Searched refs:SysCallError (Results 1 – 5 of 5) sorted by relevance
214 .. py:exception:: SysCallError216 The :py:exc:`SysCallError` occurs when there's an I/O error and OpenSSL's
20 :py:exc:`.SSL.SysCallError`.
771 * src/ssl/connection.c: Changed the parameters to the SysCallError. It
264 class SysCallError(Error): class1558 raise SysCallError(errno, errorcode.get(errno))1559 raise SysCallError(-1, "Unexpected EOF")
84 SysCallError,2378 with pytest.raises(SysCallError) as exc:3265 with pytest.raises(SysCallError) as err:3645 assert type(err.value) in [Error, SysCallError]3655 with pytest.raises(SysCallError) as err: