diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2015-09-03 09:28:03 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2015-09-03 09:28:03 (GMT) |
commit | d5da634dfccae16945933ff87d3f789c384639fd (patch) | |
tree | 160a667223eb821541f4983367448f98cd9d8500 /Lib | |
parent | 5b4674db1d393f47138b3d3bb69646d6c0cff16d (diff) | |
parent | b541e58b7a2da25b453171de8020705ae63a74a0 (diff) | |
download | cpython-d5da634dfccae16945933ff87d3f789c384639fd.zip cpython-d5da634dfccae16945933ff87d3f789c384639fd.tar.gz cpython-d5da634dfccae16945933ff87d3f789c384639fd.tar.bz2 |
Merge with 3.6. Fix test_wsgiref execution from the test module.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_wsgiref.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_wsgiref.py b/Lib/test/test_wsgiref.py index 112a1b9..8cca595 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""" |