summaryrefslogtreecommitdiffstats
path: root/Lib/cgi.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-12-31 19:15:26 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-12-31 19:15:26 (GMT)
commita617271dbd150549b021a5161d009869ad62f7b2 (patch)
tree764221870afed35cab4c4bc8e07d31964a794fc4 /Lib/cgi.py
parent54266fce8db4c303a2c5ae84ecd0db493b400625 (diff)
downloadcpython-a617271dbd150549b021a5161d009869ad62f7b2.zip
cpython-a617271dbd150549b021a5161d009869ad62f7b2.tar.gz
cpython-a617271dbd150549b021a5161d009869ad62f7b2.tar.bz2
Use cStringIO where available.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-xLib/cgi.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py
index fb40ed3..cf849e8 100755
--- a/Lib/cgi.py
+++ b/Lib/cgi.py
@@ -40,7 +40,10 @@ import urllib
import mimetools
import rfc822
import UserDict
-from StringIO import StringIO
+try:
+ from cStringIO import StringIO
+except ImportError:
+ from StringIO import StringIO
__all__ = ["MiniFieldStorage", "FieldStorage", "FormContentDict",
"SvFormContentDict", "InterpFormContentDict", "FormContent",