New submission from Dmitry Dvoinikov <dmi...@targeted.org>: If you request Event.wait(x), the call consistently returns in less than x seconds.
Sample: --------------------------------------------------------- from threading import Event from time import time e = Event() before = time() e.wait(0.1) after = time() print(after - before) # under Python 3.1 prints 0.109999... # under Python 3.2 prints 0.092999... --------------------------------------------------------- ---------- components: Library (Lib) messages: 116772 nosy: ddvoinikov priority: normal severity: normal status: open title: Event spends less time in wait() than requested type: behavior versions: Python 3.2 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue9892> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com