From 9cffd882ab6ec00450626567f06aad43e5b5243a Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Sun, 20 May 2012 16:56:24 +0800 Subject: [PATCH] Fix for issue14426 - buildbots here I come --- Lib/Cookie.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/Cookie.py b/Lib/Cookie.py index 616377cf73..2eda48c0bb 100644 --- a/Lib/Cookie.py +++ b/Lib/Cookie.py @@ -539,7 +539,7 @@ _CookiePattern = re.compile( r"(?P" # 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' -- 2.50.1