From: Gregory P. Smith Date: Mon, 16 Jul 2012 20:36:01 +0000 (-0700) Subject: Fix the with_poll tests for platforms without poll. missing import. X-Git-Tag: v2.7.4rc1~696 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e4220a5ec69874af624af598532b04db33cc00e7;p=thirdparty%2FPython%2Fcpython.git 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 c66f49b2310b..7fdb49e8e62e 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')