Let cgi.parse_header() properly unquote headers (patch #1008597).
diff --git a/Lib/cgi.py b/Lib/cgi.py
index 7c3d657..fb40ed3 100755
--- a/Lib/cgi.py
+++ b/Lib/cgi.py
@@ -338,6 +338,7 @@
             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