commit | 5bcd005a0b3af059ae3a91bb71064edee8cb8bf8 | [log] [tgz] |
---|---|---|
author | Gregory P. Smith <greg@krypto.org> | Mon Jul 16 13:34:50 2012 -0700 |
committer | Gregory P. Smith <greg@krypto.org> | Mon Jul 16 13:34:50 2012 -0700 |
tree | d89b566c3472581599d29242dcd5e9eca712227e | |
parent | dad5711677f965a62713bfc9a34599c8f44572e8 [diff] [blame] |
Fix the with_poll tests for platforms without poll. missing import.
diff --git a/Lib/test/test_telnetlib.py b/Lib/test/test_telnetlib.py index 38da08c..5ccde23 100644 --- a/Lib/test/test_telnetlib.py +++ b/Lib/test/test_telnetlib.py
@@ -4,6 +4,7 @@ import time import contextlib +import unittest from unittest import TestCase from test import support threading = support.import_module('threading')