summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-05-20 08:58:59 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-05-20 08:58:59 (GMT)
commit185f4013082288b66d6f40ea1b65f242e46f3fee (patch)
tree2c7e31c3395907cd5f82a6e428a4826af0831ad8
parent337b2bfbc41d1581ddb18fa2deaba504b112b78f (diff)
parentaeeba2629aa52e4e73e19a1502b3d3133ea68dec (diff)
downloadcpython-185f4013082288b66d6f40ea1b65f242e46f3fee.zip
cpython-185f4013082288b66d6f40ea1b65f242e46f3fee.tar.gz
cpython-185f4013082288b66d6f40ea1b65f242e46f3fee.tar.bz2
merge - Fix for issue14426 - buildbots here I come
-rw-r--r--Lib/http/cookies.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py
index 34d2f58..d291678 100644
--- a/Lib/http/cookies.py
+++ b/Lib/http/cookies.py
@@ -439,7 +439,7 @@ _CookiePattern = re.compile(r"""
(?P<val> # Start of group 'val'
"(?:[^\\"]|\\.)*" # Any doublequoted string
| # or
- \w{3},\s[\w\d-]{9,11}\s[\d:]{8}\sGMT # Special case for "expires" attr
+ \w{3},\s[\w\d\s-]{9,11}\s[\d:]{8}\sGMT # Special case for "expires" attr
| # or
""" + _LegalCharsPatt + r"""* # Any word or empty string
) # End of group 'val'