From 5bcd005a0b3af059ae3a91bb71064edee8cb8bf8 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Mon, 16 Jul 2012 13:34:50 -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 38da08c7283..5ccde23b056 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')