From e4220a5ec69874af624af598532b04db33cc00e7 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Mon, 16 Jul 2012 13:36:01 -0700 Subject: [PATCH] Fix the with_poll tests for platforms without poll. missing import. --- Lib/test/test_telnetlib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_telnetlib.py b/Lib/test/test_telnetlib.py index c66f49b2310..7fdb49e8e62 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')