Issue #20311: Fix test_telnetlib, set the resolution of the MockSelector

This commit is contained in:
Victor Stinner 2014-01-25 23:53:28 +01:00
parent 6029e08691
commit 3c2f175ec4
1 changed files with 4 additions and 0 deletions

View File

@ -116,6 +116,10 @@ class MockSelector(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