diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-11 08:38:44 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-11 08:38:44 (GMT) |
commit | fea7e7336f1d73f471cc590ed839ae2b7d226f6c (patch) | |
tree | 397b5ba6462bf26c7193a2aaddd2b5667e0f3085 /Lib/asyncio/test_utils.py | |
parent | 6a45021084f287cf389205939784d32f29efb20c (diff) | |
parent | 3f99504c08ebca685271c32289f8907bc456e1fc (diff) | |
download | cpython-fea7e7336f1d73f471cc590ed839ae2b7d226f6c.zip cpython-fea7e7336f1d73f471cc590ed839ae2b7d226f6c.tar.gz cpython-fea7e7336f1d73f471cc590ed839ae2b7d226f6c.tar.bz2 |
Merge heads
Diffstat (limited to 'Lib/asyncio/test_utils.py')
-rw-r--r-- | Lib/asyncio/test_utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/asyncio/test_utils.py b/Lib/asyncio/test_utils.py index 71d69cf..7c8e1dc 100644 --- a/Lib/asyncio/test_utils.py +++ b/Lib/asyncio/test_utils.py @@ -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() |