From: Victor Stinner Date: Thu, 3 Sep 2015 10:14:25 +0000 (+0200) Subject: test_wsgiref: add missing import (support) X-Git-Tag: v3.5.1rc1~427^2~34^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a7b76e0cbea0a3a9e1f21029c2b219d87b98dcb3;p=thirdparty%2FPython%2Fcpython.git test_wsgiref: add missing import (support) --- diff --git a/Lib/test/test_wsgiref.py b/Lib/test/test_wsgiref.py index 638c432e7bd1..4076b6862bc0 100644 --- a/Lib/test/test_wsgiref.py +++ b/Lib/test/test_wsgiref.py @@ -15,6 +15,8 @@ import re import sys import unittest +from test import support + class MockServer(WSGIServer): """Non-socket HTTP server"""