summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_wsgiref.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-09-03 10:14:25 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-09-03 10:14:25 (GMT)
commita7b76e0cbea0a3a9e1f21029c2b219d87b98dcb3 (patch)
treec6358d0a7cc1ae87ba7db3a52ec927f0575bc00d /Lib/test/test_wsgiref.py
parent22f2c0e215e2abbe41f1bcf79043e1d36b5e8d9a (diff)
downloadcpython-a7b76e0cbea0a3a9e1f21029c2b219d87b98dcb3.zip
cpython-a7b76e0cbea0a3a9e1f21029c2b219d87b98dcb3.tar.gz
cpython-a7b76e0cbea0a3a9e1f21029c2b219d87b98dcb3.tar.bz2
test_wsgiref: add missing import (support)
Diffstat (limited to 'Lib/test/test_wsgiref.py')
-rw-r--r--Lib/test/test_wsgiref.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_wsgiref.py b/Lib/test/test_wsgiref.py
index 638c432..4076b68 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"""