Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/_io/
Dbufferedio.c720 static PyObject *eintr_int = NULL; in _PyIO_trap_eintr() local
724 if (eintr_int == NULL) { in _PyIO_trap_eintr()
725 eintr_int = PyLong_FromLong(EINTR); in _PyIO_trap_eintr()
726 assert(eintr_int != NULL); in _PyIO_trap_eintr()
735 PyObject_RichCompareBool(env_err->myerrno, eintr_int, Py_EQ) > 0) { in _PyIO_trap_eintr()