File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 58
58
HAS_SNI = _pyssl .HAS_SNI | _ssl .HAS_SNI
59
59
PYSSLError : Any = _pyssl .SSLError
60
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 = _pyssl .BLOCKING_IO_WRITE_ERROR | _ssl .BLOCKING_IO_WRITE_ERROR
61
+ BLOCKING_IO_READ_ERROR : Any = (_pyssl .BLOCKING_IO_READ_ERROR , _ssl .BLOCKING_IO_READ_ERROR )
62
+ BLOCKING_IO_WRITE_ERROR : Any = (
63
+ _pyssl .BLOCKING_IO_WRITE_ERROR ,
64
+ _ssl .BLOCKING_IO_WRITE_ERROR ,
65
+ )
63
66
else :
64
67
HAS_SNI = _ssl .HAS_SNI
65
68
PYSSLError = _ssl .SSLError
66
69
BLOCKING_IO_ERRORS = _ssl .BLOCKING_IO_ERRORS
67
- BLOCKING_IO_READ_ERROR = _ssl .BLOCKING_IO_READ_ERROR
68
- BLOCKING_IO_WRITE_ERROR = _ssl .BLOCKING_IO_WRITE_ERROR
70
+ BLOCKING_IO_READ_ERROR = ( _ssl .BLOCKING_IO_READ_ERROR ,)
71
+ BLOCKING_IO_WRITE_ERROR = ( _ssl .BLOCKING_IO_WRITE_ERROR ,)
69
72
SSLError = _ssl .SSLError
70
73
BLOCKING_IO_LOOKUP_ERROR = BLOCKING_IO_READ_ERROR
71
74
You can’t perform that action at this time.
0 commit comments