From: Senthil Kumaran Date: Thu, 3 Sep 2015 09:26:31 +0000 (-0700) Subject: Fix test_wsgiref execution from the test module. X-Git-Tag: v3.5.1rc1~427^2~35^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22f2c0e215e2abbe41f1bcf79043e1d36b5e8d9a;p=thirdparty%2FPython%2Fcpython.git Fix test_wsgiref execution from the test module. --- diff --git a/Lib/test/test_wsgiref.py b/Lib/test/test_wsgiref.py index 5704fc782607..638c432e7bd1 100644 --- a/Lib/test/test_wsgiref.py +++ b/Lib/test/test_wsgiref.py @@ -1,11 +1,10 @@ -from __future__ import nested_scopes # Backward compat for 2.1 from unittest import TestCase from wsgiref.util import setup_testing_defaults from wsgiref.headers import Headers from wsgiref.handlers import BaseHandler, BaseCGIHandler from wsgiref import util from wsgiref.validate import validator -from wsgiref.simple_server import WSGIServer, WSGIRequestHandler, demo_app +from wsgiref.simple_server import WSGIServer, WSGIRequestHandler from wsgiref.simple_server import make_server from io import StringIO, BytesIO, BufferedReader from socketserver import BaseServer @@ -14,8 +13,8 @@ from platform import python_implementation import os import re import sys +import unittest -from test import support class MockServer(WSGIServer): """Non-socket HTTP server"""