diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-07-16 20:34:50 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-07-16 20:34:50 (GMT) |
commit | 5bcd005a0b3af059ae3a91bb71064edee8cb8bf8 (patch) | |
tree | d89b566c3472581599d29242dcd5e9eca712227e /Lib/test/test_telnetlib.py | |
parent | dad5711677f965a62713bfc9a34599c8f44572e8 (diff) | |
download | cpython-5bcd005a0b3af059ae3a91bb71064edee8cb8bf8.zip cpython-5bcd005a0b3af059ae3a91bb71064edee8cb8bf8.tar.gz cpython-5bcd005a0b3af059ae3a91bb71064edee8cb8bf8.tar.bz2 |
Fix the with_poll tests for platforms without poll. missing import.
Diffstat (limited to 'Lib/test/test_telnetlib.py')
-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 38da08c..5ccde23 100644 --- a/Lib/test/test_telnetlib.py +++ b/Lib/test/test_telnetlib.py @@ -4,6 +4,7 @@ import telnetlib import time import contextlib +import unittest from unittest import TestCase from test import support threading = support.import_module('threading') |