summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/asyncio/test_utils.py')
-rw-r--r--Lib/asyncio/test_utils.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/asyncio/test_utils.py b/Lib/asyncio/test_utils.py
index fed28d7..ccb4454 100644
--- a/Lib/asyncio/test_utils.py
+++ b/Lib/asyncio/test_utils.py
@@ -144,10 +144,6 @@ class TestSelector(selectors.BaseSelector):
def __init__(self):
self.keys = {}
- @property
- def resolution(self):
- return 1e-3
-
def register(self, fileobj, events, data=None):
key = selectors.SelectorKey(fileobj, 0, events, data)
self.keys[fileobj] = key
@@ -196,7 +192,6 @@ class TestLoop(base_events.BaseEventLoop):
next(self._gen)
self._time = 0
self._timers = []
- self._granularity = 1e-9
self._selector = TestSelector()
self.readers = {}