summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-07-16 20:35:20 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-07-16 20:35:20 (GMT)
commit2a86b25323531397c4ffcb8ed5920b56d5ebb10e (patch)
treeb633f09d5b3de0b5a87bee12f6f49ade1b5b236b
parent8cffdd9ca26224f9a254b06589989e37692c8a24 (diff)
parent5bcd005a0b3af059ae3a91bb71064edee8cb8bf8 (diff)
downloadcpython-2a86b25323531397c4ffcb8ed5920b56d5ebb10e.zip
cpython-2a86b25323531397c4ffcb8ed5920b56d5ebb10e.tar.gz
cpython-2a86b25323531397c4ffcb8ed5920b56d5ebb10e.tar.bz2
Fix the with_poll tests for platforms without poll. missing import.
-rw-r--r--Lib/test/test_telnetlib.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_telnetlib.py b/Lib/test/test_telnetlib.py
index 12fcb6e..b7c0052 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')