commit | d528b01a718c46c57977fc1b6a3d805ef65f852a | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@wyplay.com> | Tue Mar 13 16:25:35 2012 +0100 |
committer | Victor Stinner <vstinner@wyplay.com> | Tue Mar 13 16:25:35 2012 +0100 |
tree | 62330092a9aa81a4a46c54539af0df9f50ddfe06 | |
parent | d327f9de1f9affd2ce7296c5cdc3984ded1ee747 [diff] [blame] |
Issue #14180: Fix another typo in kqueue_queue_control()
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index 179dd61..19d9d3b 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c
@@ -1868,7 +1868,7 @@ "timeout must be positive or None"); return NULL; } - ptimeoutspec = &timeoutspec; + ptimeoutspec = &timeout; } else { PyErr_Format(PyExc_TypeError,