diff options
| author | Senthil Kumaran <senthil@uthcode.com> | 2012-05-20 08:56:24 (GMT) |
|---|---|---|
| committer | Senthil Kumaran <senthil@uthcode.com> | 2012-05-20 08:56:24 (GMT) |
| commit | 9cffd882ab6ec00450626567f06aad43e5b5243a (patch) | |
| tree | 77de12b6b6ec179c4bc6c72714f51a63d53424bb /Lib/Cookie.py | |
| parent | ed11a5d018e3fc234d7126832756a15c1af67d22 (diff) | |
| download | cpython-9cffd882ab6ec00450626567f06aad43e5b5243a.zip cpython-9cffd882ab6ec00450626567f06aad43e5b5243a.tar.gz cpython-9cffd882ab6ec00450626567f06aad43e5b5243a.tar.bz2 | |
Fix for issue14426 - buildbots here I come
Diffstat (limited to 'Lib/Cookie.py')
| -rw-r--r-- | Lib/Cookie.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/Cookie.py b/Lib/Cookie.py index 616377c..2eda48c 100644 --- a/Lib/Cookie.py +++ b/Lib/Cookie.py @@ -539,7 +539,7 @@ _CookiePattern = re.compile( r"(?P<val>" # Start of group 'val' r'"(?:[^\\"]|\\.)*"' # Any doublequoted string r"|" # or - r"\w{3},\s[\w\d-]{9,11}\s[\d:]{8}\sGMT" # Special case for "expires" attr + r"\w{3},\s[\s\w\d-]{9,11}\s[\d:]{8}\sGMT" # Special case for "expires" attr r"|" # or ""+ _LegalCharsPatt +"*" # Any word or empty string r")" # End of group 'val' |
