diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-07-16 20:36:01 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-07-16 20:36:01 (GMT) |
commit | e4220a5ec69874af624af598532b04db33cc00e7 (patch) | |
tree | 43a902054bbb06c9224c0d1866cc50f26e888a0a | |
parent | 66dd94199c00bc059fc70bb246db01b60f5a650a (diff) | |
download | cpython-e4220a5ec69874af624af598532b04db33cc00e7.zip cpython-e4220a5ec69874af624af598532b04db33cc00e7.tar.gz cpython-e4220a5ec69874af624af598532b04db33cc00e7.tar.bz2 |
Fix the with_poll tests for platforms without poll. missing import.
-rw-r--r-- | Lib/test/test_telnetlib.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_telnetlib.py b/Lib/test/test_telnetlib.py index c66f49b..7fdb49e 100644 --- a/Lib/test/test_telnetlib.py +++ b/Lib/test/test_telnetlib.py @@ -3,6 +3,7 @@ import telnetlib import time import Queue +import unittest from unittest import TestCase from test import test_support threading = test_support.import_module('threading') |