[Python-checkins] cpython (2.7): Fix the with_poll tests for platforms without poll. missing import.

gregory.p.smith python-checkins at python.org
Mon Jul 16 22:36:13 CEST 2012


http://hg.python.org/cpython/rev/cd2d4fe57c0e
changeset:   78139:cd2d4fe57c0e
branch:      2.7
parent:      78132:076ae30e5dd0
user:        Gregory P. Smith <greg at krypto.org>
date:        Mon Jul 16 13:36:01 2012 -0700
summary:
  Fix the with_poll tests for platforms without poll.  missing import.

files:
  Lib/test/test_telnetlib.py |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_telnetlib.py b/Lib/test/test_telnetlib.py
--- a/Lib/test/test_telnetlib.py
+++ b/Lib/test/test_telnetlib.py
@@ -3,6 +3,7 @@
 import time
 import Queue
 
+import unittest
 from unittest import TestCase
 from test import test_support
 threading = test_support.import_module('threading')

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list