File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 69
69
# Errors raised by sockets (and TLS sockets) when in non-blocking mode.
70
70
BLOCKING_IO_ERRORS = (
71
71
BlockingIOError ,
72
- BLOCKING_IO_LOOKUP_ERROR ,
72
+ * BLOCKING_IO_LOOKUP_ERROR ,
73
73
* ssl_support .BLOCKING_IO_ERRORS ,
74
74
)
75
75
Original file line number Diff line number Diff line change 57
57
if HAVE_PYSSL :
58
58
HAS_SNI = _pyssl .HAS_SNI | _ssl .HAS_SNI
59
59
PYSSLError : Any = _pyssl .SSLError
60
- BLOCKING_IO_ERRORS : Any = _pyssl .BLOCKING_IO_ERRORS + _ssl .BLOCKING_IO_ERRORS
61
- BLOCKING_IO_READ_ERROR : Any = (_pyssl .BLOCKING_IO_READ_ERROR , _ssl .BLOCKING_IO_READ_ERROR )
62
- BLOCKING_IO_WRITE_ERROR : Any = (
60
+ BLOCKING_IO_ERRORS : tuple = _pyssl .BLOCKING_IO_ERRORS + _ssl .BLOCKING_IO_ERRORS
61
+ BLOCKING_IO_READ_ERROR : tuple = (_pyssl .BLOCKING_IO_READ_ERROR , _ssl .BLOCKING_IO_READ_ERROR )
62
+ BLOCKING_IO_WRITE_ERROR : tuple = (
63
63
_pyssl .BLOCKING_IO_WRITE_ERROR ,
64
64
_ssl .BLOCKING_IO_WRITE_ERROR ,
65
65
)
You can’t perform that action at this time.
0 commit comments