diff options
author | Guido van Rossum <guido@python.org> | 2007-08-28 03:32:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-08-28 03:32:38 (GMT) |
commit | 92bab812f7e9b7a27054cfa302223c3f583bff9c (patch) | |
tree | 58ed1387b114269c29b5f4286cbb5de0b1d49629 /Lib/cgi.py | |
parent | f0c7416157f471dbb8ac88aa72202cc984c02700 (diff) | |
download | cpython-92bab812f7e9b7a27054cfa302223c3f583bff9c.zip cpython-92bab812f7e9b7a27054cfa302223c3f583bff9c.tar.gz cpython-92bab812f7e9b7a27054cfa302223c3f583bff9c.tar.bz2 |
My wish for TempFile is fulfilled.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -776,7 +776,7 @@ class FieldStorage: """ import tempfile - return tempfile.TemporaryFile("w+") + return tempfile.TemporaryFile("w+", encoding="utf-8", newline="\n") |