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

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


http://hg.python.org/cpython/rev/f9d31d6977f1
changeset:   77075:f9d31d6977f1
branch:      3.2
parent:      77065:32cf38bfb36f
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Sun May 20 16:58:30 2012 +0800
summary:
  Fix for issue14426 - buildbots here I come

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


diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py
--- a/Lib/http/cookies.py
+++ b/Lib/http/cookies.py
@@ -439,7 +439,7 @@
     (?P<val>                       # Start of group 'val'
     "(?:[^\\"]|\\.)*"                # Any doublequoted string
     |                                # 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
     """ + _LegalCharsPatt + r"""*    # Any word or empty string
     )                              # End of group 'val'

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


More information about the Python-checkins mailing list