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

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


http://hg.python.org/cpython/rev/d4b4c66b4604
changeset:   78138:d4b4c66b4604
parent:      78136:a970054a93fb
parent:      78137:2a14987d50e5
user:        Gregory P. Smith <greg at krypto.org>
date:        Mon Jul 16 13:35:20 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
@@ -4,6 +4,7 @@
 import time
 import contextlib
 
+import unittest
 from unittest import TestCase
 from test import support
 threading = support.import_module('threading')

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


More information about the Python-checkins mailing list