Commit aeeba262 authored by Senthil Kumaran's avatar Senthil Kumaran

Fix for issue14426 - buildbots here I come

parent 6e8ba0ab
...@@ -439,7 +439,7 @@ _CookiePattern = re.compile(r""" ...@@ -439,7 +439,7 @@ _CookiePattern = re.compile(r"""
(?P<val> # Start of group 'val' (?P<val> # Start of group 'val'
"(?:[^\\"]|\\.)*" # Any doublequoted string "(?:[^\\"]|\\.)*" # Any doublequoted string
| # or | # 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 | # or
""" + _LegalCharsPatt + r"""* # Any word or empty string """ + _LegalCharsPatt + r"""* # Any word or empty string
) # End of group 'val' ) # End of group 'val'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment