Searched refs:BufferTooShort (Results 1 – 10 of 10) sorted by relevance
17 class BufferTooShort(ProcessError): class33 BufferTooShort = BufferTooShort variable in BaseContext
25 from . import AuthenticationError, BufferTooShort239 raise BufferTooShort(result.getvalue())
20 PyObject *ProcessError, *BufferTooShort; variable267 BufferTooShort = PyObject_GetAttrString(temp, "BufferTooShort"); in init_multiprocessing()
136 extern PyObject *BufferTooShort;
234 result = PyObject_CallFunction(BufferTooShort, in connection_recvbytes_into()239 PyErr_SetObject(BufferTooShort, result); in connection_recvbytes_into()
74 class BufferTooShort(ProcessError): class
490 .. exception:: BufferTooShort495 If ``e`` is an instance of :exc:`BufferTooShort` then ``e.args[0]`` will give884 If the buffer is too short then a :exc:`BufferTooShort` exception is2063 .. exception:: BufferTooShort
650 .. exception:: BufferTooShort655 If ``e`` is an instance of :exc:`BufferTooShort` then ``e.args[0]`` will give1117 If the buffer is too short then a :exc:`BufferTooShort` exception is
1655 except multiprocessing.BufferTooShort, e:
2907 except multiprocessing.BufferTooShort as e: