[pypy-commit] pypy py3.5: (arigo) Fix.

mjacob pypy.commits at gmail.com
Thu Mar 2 09:31:01 EST 2017


Author: Manuel Jacob <me at manueljacob.de>
Branch: py3.5
Changeset: r90484:59e2a6469001
Date: 2017-03-02 15:29 +0100
http://bitbucket.org/pypy/pypy/changeset/59e2a6469001/

Log:	(arigo) Fix.

diff --git a/pypy/module/select/interp_kqueue.py b/pypy/module/select/interp_kqueue.py
--- a/pypy/module/select/interp_kqueue.py
+++ b/pypy/module/select/interp_kqueue.py
@@ -188,7 +188,7 @@
                             raise oefmt(space.w_ValueError,
                                         "Timeout must be None or >= 0, got %s",
                                         str(_timeout))
-                        fill_timespec(_timeout, ptimeout)
+                        fill_timespec(_timeout, timeout)
                         timeout_at = timeutils.monotonic(space) + _timeout
                         ptimeout = timeout
                     else:


More information about the pypy-commit mailing list