Lines Matching +full:ignore +full:- +full:errors
4 # It does not support changing any port parameters and will silently ignore any
11 # (C) 2001-2015 Chris Liechti <cliechti@gmx.net>
13 # SPDX-License-Identifier: BSD-3-Clause
17 # - "debug" print diagnostic messages
67 # after connecting, switch to non-blocking, we're using select
99 # ignore errors.
133 # - - - - - - - - - - - - - - - - - - - - - - - -
162 # returns with empty lists -> thus abort read operation.
163 # For timeout == 0 (non-blocking operation) also abort when
167 buf = self._socket.recv(size - len(read))
175 # OSError ignore BlockingIOErrors and EINTR. other errors are shown
176 # https://www.python.org/dev/peps/pep-0475.
181 # ignore BlockingIOErrors and EINTR. all errors are shown
182 # see also http://www.python.org/dev/peps/pep-3151/#select
205 # Zero timeout indicates non-blocking - simply return the
223 tx_len -= n
228 # OSError ignore BlockingIOErrors and EINTR. other errors are shown
229 # https://www.python.org/dev/peps/pep-0475.
234 # ignore BlockingIOErrors and EINTR. all errors are shown
235 # see also http://www.python.org/dev/peps/pep-3151/#select
240 return length - len(d)
256 # OSError ignore BlockingIOErrors and EINTR. other errors are shown
257 # https://www.python.org/dev/peps/pep-0475.
262 # ignore BlockingIOErrors and EINTR. all errors are shown
263 # see also http://www.python.org/dev/peps/pep-3151/#select
339 # - - - platform specific - - -