diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-07 16:03:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-07 16:03:04 (GMT) |
commit | dda7b1990b58c116897ca1501d8740e161bc4126 (patch) | |
tree | 802a31e0395afc3c930f6c16a9aa64b345de1d71 /Lib | |
parent | a1b821cf60493261b450a37092327361b137f140 (diff) | |
download | cpython-dda7b1990b58c116897ca1501d8740e161bc4126.zip cpython-dda7b1990b58c116897ca1501d8740e161bc4126.tar.gz cpython-dda7b1990b58c116897ca1501d8740e161bc4126.tar.bz2 |
revert unrelated change to test_telnetlib
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_telnetlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_telnetlib.py b/Lib/test/test_telnetlib.py index 94b1e73..16f7f93 100644 --- a/Lib/test/test_telnetlib.py +++ b/Lib/test/test_telnetlib.py @@ -98,7 +98,7 @@ class GeneralTests(TestCase): def _read_setUp(self): # the blocking constant should be tuned! - self.blocking_timeout = 0.1 + self.blocking_timeout = 0.0 self.evt = threading.Event() self.dataq = Queue.Queue() self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |