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 5858 HAS_SNI = _pyssl .HAS_SNI | _ssl .HAS_SNI
5959 PYSSLError : Any = _pyssl .SSLError
6060 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+ )
6366 else :
6467 HAS_SNI = _ssl .HAS_SNI
6568 PYSSLError = _ssl .SSLError
6669 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 ,)
6972 SSLError = _ssl .SSLError
7073 BLOCKING_IO_LOOKUP_ERROR = BLOCKING_IO_READ_ERROR
7174
You can’t perform that action at this time.
0 commit comments