We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff3ab57 commit d356084Copy full SHA for d356084
1 file changed
Modules/signalmodule.c
@@ -194,7 +194,7 @@ double_from_timeval(struct timeval *tv)
194
static PyObject *
195
itimer_retval(struct itimerval *iv)
196
{
197
- PyObject *value = PyFloat_FromDouble(double_from_timeval(&iv->it_value))
+ PyObject *value = PyFloat_FromDouble(double_from_timeval(&iv->it_value));
198
if (value == NULL) {
199
return NULL;
200
}
0 commit comments