summaryrefslogtreecommitdiffstats
path: root/Lib/wsgiref/simple_server.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-08-08 17:01:45 (GMT)
committerGuido van Rossum <guido@python.org>2007-08-08 17:01:45 (GMT)
commit6a10e02aa644ad7f9c1f2ab6dd249c1a414c0c8b (patch)
treef78dd670c175f469bb0c312d68ddb4b9ac3eabe7 /Lib/wsgiref/simple_server.py
parent0269b91030c87db7f0d3c735367ab7ea6277a918 (diff)
downloadcpython-6a10e02aa644ad7f9c1f2ab6dd249c1a414c0c8b.zip
cpython-6a10e02aa644ad7f9c1f2ab6dd249c1a414c0c8b.tar.gz
cpython-6a10e02aa644ad7f9c1f2ab6dd249c1a414c0c8b.tar.bz2
Switch wsgiref to io.{StringIO,BytesIO}. This shuts up the test failures.
(I'm not sure about it actually working though.)
Diffstat (limited to 'Lib/wsgiref/simple_server.py')
-rw-r--r--Lib/wsgiref/simple_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/wsgiref/simple_server.py b/Lib/wsgiref/simple_server.py
index abb3620..980f97a 100644
--- a/Lib/wsgiref/simple_server.py
+++ b/Lib/wsgiref/simple_server.py
@@ -163,7 +163,7 @@ class WSGIRequestHandler(BaseHTTPRequestHandler):
def demo_app(environ,start_response):
- from StringIO import StringIO
+ from io import StringIO
stdout = StringIO()
print("Hello world!", file=stdout)
print(file=stdout)