changeset: 89696:375e4f9c9732 branch: 3.4 user: Victor Stinner date: Tue Feb 11 09:03:47 2014 +0100 files: Lib/asyncio/test_utils.py description: Issue #20505: Fix TestLoop, set the clock resolution diff -r 6733d9dfffbb -r 375e4f9c9732 Lib/asyncio/test_utils.py --- a/Lib/asyncio/test_utils.py Mon Feb 10 23:42:32 2014 +0100 +++ b/Lib/asyncio/test_utils.py Tue Feb 11 09:03:47 2014 +0100 @@ -191,6 +191,7 @@ self._gen = gen() next(self._gen) self._time = 0 + self._clock_resolution = 1e-9 self._timers = [] self._selector = TestSelector()