[issue17707] Multiprocessing queue get method does not block for short timeouts

Antoine Pitrou report at bugs.python.org
Sun Apr 14 23:32:37 CEST 2013


Antoine Pitrou added the comment:

I don't understand what you're worrying about here. This is just because of evaluation order:

>>> import itertools
>>> it = itertools.count()
>>> f = it.__next__
>>> f() - f()
-1
>>> f() - f()
-1

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue17707>
_______________________________________


More information about the Python-bugs-list mailing list