Lines Matching refs:timeout
36 "put($self, /, item, block=True, timeout=None)\n"
41 "The optional \'block\' and \'timeout\' arguments are ignored, as this method\n"
49 int block, PyObject *timeout);
55 static const char * const _keywords[] = {"item", "block", "timeout", NULL};
61 PyObject *timeout = Py_None;
80 timeout = args[2];
82 return_value = _queue_SimpleQueue_put_impl(self, item, block, timeout);
124 "get($self, /, block=True, timeout=None)\n"
129 "If optional args \'block\' is true and \'timeout\' is None (the default),\n"
130 "block if necessary until an item is available. If \'timeout\' is\n"
131 "a non-negative number, it blocks at most \'timeout\' seconds and raises\n"
134 "available, else raise the Empty exception (\'timeout\' is ignored\n"
148 static const char * const _keywords[] = {"block", "timeout", NULL};