diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-03 10:14:25 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-03 10:14:25 (GMT) |
commit | a7b76e0cbea0a3a9e1f21029c2b219d87b98dcb3 (patch) | |
tree | c6358d0a7cc1ae87ba7db3a52ec927f0575bc00d /Lib/test/test_wsgiref.py | |
parent | 22f2c0e215e2abbe41f1bcf79043e1d36b5e8d9a (diff) | |
download | cpython-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.py | 2 |
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""" |