Home
last modified time | relevance | path

Searched refs:BufferTooShort (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Modules/_multiprocessing/
Dmultiprocessing.c20 PyObject *ProcessError, *BufferTooShort; variable
267 BufferTooShort = PyObject_GetAttrString(temp, "BufferTooShort"); in init_multiprocessing()
Dmultiprocessing.h136 extern PyObject *BufferTooShort;
Dconnection.h234 result = PyObject_CallFunction(BufferTooShort, in connection_recvbytes_into()
239 PyErr_SetObject(BufferTooShort, result); in connection_recvbytes_into()
/external/python/cpython2/Lib/multiprocessing/
D__init__.py74 class BufferTooShort(ProcessError): class
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst490 .. exception:: BufferTooShort
495 If ``e`` is an instance of :exc:`BufferTooShort` then ``e.args[0]`` will give
881 If the buffer is too short then a :exc:`BufferTooShort` exception is
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py1585 except multiprocessing.BufferTooShort, e: