From: Gregory P. Smith Date: Mon, 16 Jul 2012 20:34:50 +0000 (-0700) Subject: Fix the with_poll tests for platforms without poll. missing import. X-Git-Tag: v3.3.0b2~183^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bcd005a0b3af059ae3a91bb71064edee8cb8bf8;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 38da08c72832..5ccde23b056e 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')