Browse Source

Fix for issue14426 - buildbots here I come

pull/2332/head
Senthil Kumaran 14 years ago
parent
commit
9cffd882ab
  1. 2
      Lib/Cookie.py

2
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'

Loading…
Cancel
Save