Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dselectmodule.c1538 PyObject *otimeout = NULL; in kqueue_queue_control() local
1550 if (!PyArg_ParseTuple(args, "Oi|O:control", &ch, &nevents, &otimeout)) in kqueue_queue_control()
1560 if (otimeout == Py_None || otimeout == NULL) { in kqueue_queue_control()
1563 else if (PyNumber_Check(otimeout)) { in kqueue_queue_control()
1567 timeout = PyFloat_AsDouble(otimeout); in kqueue_queue_control()
1591 Py_TYPE(otimeout)->tp_name); in kqueue_queue_control()