diff options
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/cgi.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |