[Python-checkins] cpython (2.7): Fix for issue14426 - buildbots here I come

senthil.kumaran python-checkins at python.org
Sun May 20 11:00:21 CEST 2012


http://hg.python.org/cpython/rev/f457419552e3
changeset:   77074:f457419552e3
branch:      2.7
parent:      77072:d7aff4423172
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Sun May 20 16:56:24 2012 +0800
summary:
  Fix for issue14426 - buildbots here I come

files:
  Lib/Cookie.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/Cookie.py b/Lib/Cookie.py
--- a/Lib/Cookie.py
+++ b/Lib/Cookie.py
@@ -539,7 +539,7 @@
     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'

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list