summaryrefslogtreecommitdiff
path: root/Lib/cgi.py
diff options
context:
space:
mode:
authorJohannes Gijsbers <jlg@dds.nl>2004-08-14 15:39:34 +0000
committerJohannes Gijsbers <jlg@dds.nl>2004-08-14 15:39:34 +0000
commit9e15dd6861602449e21024d18214f6da0bbe3df7 (patch)
tree6ac5c18bc37bf254ec4dada215ff91df243834ac /Lib/cgi.py
parent34c4120731b498663e38edc4d975d4a8c3071da0 (diff)
downloadcpython-git-9e15dd6861602449e21024d18214f6da0bbe3df7.tar.gz
Let cgi.parse_header() properly unquote headers (patch #1008597).
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-xLib/cgi.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py
index 7c3d657943..fb40ed36a3 100755
--- a/Lib/cgi.py
+++ b/Lib/cgi.py
@@ -338,6 +338,7 @@ def parse_header(line):
value = p[i+1:].strip()
if len(value) >= 2 and value[0] == value[-1] == '"':
value = value[1:-1]
+ value = value.replace('\\\\', '\\').replace('\\"', '"')
pdict[name] = value
return key, pdict