Lines Matching defs:seconds
44 "alarm($module, seconds, /)\n"
47 "Arrange for SIGALRM to arrive after the given number of seconds.");
53 signal_alarm_impl(PyObject *module, int seconds);
59 int seconds;
62 seconds = _PyLong_AsInt(arg);
63 if (seconds == -1 && PyErr_Occurred()) {
66 _return_value = signal_alarm_impl(module, seconds);
280 "setitimer($module, which, seconds, interval=0.0, /)\n"
285 "The timer will fire after value seconds and after that every interval seconds.\n"
286 "The itimer can be cleared by setting seconds to zero.\n"
294 signal_setitimer_impl(PyObject *module, int which, PyObject *seconds,
302 PyObject *seconds;
312 seconds = args[1];
318 return_value = signal_setitimer_impl(module, which, seconds, interval);
523 "The timeout is specified in seconds, with floating point numbers allowed.");