asyncio: Fix granularity of test_utils.TestLoop.

This commit is contained in:
Victor Stinner 2014-01-30 16:05:07 -08:00
parent 9572898282
commit 1c16537327

View file

@ -196,6 +196,7 @@ class TestLoop(base_events.BaseEventLoop):
next(self._gen)
self._time = 0
self._timers = []
self._granularity = 1e-9
self._selector = TestSelector()
self.readers = {}