diff options
author | Raymond Hettinger <python@rcn.com> | 2004-12-31 19:15:26 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-12-31 19:15:26 (GMT) |
commit | a617271dbd150549b021a5161d009869ad62f7b2 (patch) | |
tree | 764221870afed35cab4c4bc8e07d31964a794fc4 /Lib/cgi.py | |
parent | 54266fce8db4c303a2c5ae84ecd0db493b400625 (diff) | |
download | cpython-a617271dbd150549b021a5161d009869ad62f7b2.zip cpython-a617271dbd150549b021a5161d009869ad62f7b2.tar.gz cpython-a617271dbd150549b021a5161d009869ad62f7b2.tar.bz2 |
Use cStringIO where available.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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", |