Issue #20505: Fix TestLoop, set the clock resolution

This commit is contained in:
Victor Stinner 2014-02-11 09:03:47 +01:00
parent ed1654fa3e
commit 7b467db4d3
1 changed files with 1 additions and 0 deletions

View File

@ -191,6 +191,7 @@ class TestLoop(base_events.BaseEventLoop):
self._gen = gen()
next(self._gen)
self._time = 0
self._clock_resolution = 1e-9
self._timers = []
self._selector = TestSelector()