summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-05-20 08:58:30 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-05-20 08:58:30 (GMT)
commitaeeba2629aa52e4e73e19a1502b3d3133ea68dec (patch)
treef6c4dd06f6840c92dfaf48cd0a2d54595892e8ae /Lib
parent6e8ba0aba60ed0c120336765d8ec58a7472011ae (diff)
downloadcpython-aeeba2629aa52e4e73e19a1502b3d3133ea68dec.zip
cpython-aeeba2629aa52e4e73e19a1502b3d3133ea68dec.tar.gz
cpython-aeeba2629aa52e4e73e19a1502b3d3133ea68dec.tar.bz2
Fix for issue14426 - buildbots here I come
Diffstat (limited to 'Lib')
-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 2aeb8d3..ddbcbf8 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'