Fix the with_poll tests for platforms without poll. missing import.
authorGregory P. Smith <greg@krypto.org>
Mon, 16 Jul 2012 20:36:01 +0000 (13:36 -0700)
committerGregory P. Smith <greg@krypto.org>
Mon, 16 Jul 2012 20:36:01 +0000 (13:36 -0700)
Lib/test/test_telnetlib.py

index c66f49b2310b31e3faabc0d3db987583c9b02ce3..7fdb49e8e62edd6b4cdef31e32e1d167e07d2d99 100644 (file)
@@ -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')