[Python-checkins] cpython (3.4): test_wsgiref: add missing import (support)

victor.stinner python-checkins at python.org
Thu Sep 3 12:14:51 CEST 2015


https://hg.python.org/cpython/rev/11b6ac84d151
changeset:   97617:11b6ac84d151
branch:      3.4
parent:      97612:fdbec2800888
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Sep 03 12:14:25 2015 +0200
summary:
  test_wsgiref: add missing import (support)

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


diff --git a/Lib/test/test_wsgiref.py b/Lib/test/test_wsgiref.py
--- a/Lib/test/test_wsgiref.py
+++ b/Lib/test/test_wsgiref.py
@@ -15,6 +15,8 @@
 import sys
 import unittest
 
+from test import support
+
 
 class MockServer(WSGIServer):
     """Non-socket HTTP server"""

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


More information about the Python-checkins mailing list