diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-08-25 15:09:45 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-08-25 15:09:45 (GMT) |
commit | 0cb8e5131d0797d3bdb1494de842e98798174cf2 (patch) | |
tree | 83070295cdcd0fb145d27d73170da1c3ba8f552c /Lib/http | |
parent | 9dd279a3accb22d17f17c413faac47ef71913486 (diff) | |
parent | cd0f74b1e09a50acc073aa57c1345968257a9056 (diff) | |
download | cpython-0cb8e5131d0797d3bdb1494de842e98798174cf2.zip cpython-0cb8e5131d0797d3bdb1494de842e98798174cf2.tar.gz cpython-0cb8e5131d0797d3bdb1494de842e98798174cf2.tar.bz2 |
Merge #16611: BaseCookie now parses 'secure' and 'httponly' flags.
Diffstat (limited to 'Lib/http')
-rw-r--r-- | Lib/http/cookies.py | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py index d291678..dc3c74a 100644 --- a/Lib/http/cookies.py +++ b/Lib/http/cookies.py @@ -338,6 +338,8 @@ class Morsel(dict): "version" : "Version", } + _flags = {'secure', 'httponly'} + def __init__(self): # Set defaults self.key = self.value = self.coded_value = None @@ -435,15 +437,18 @@ _CookiePattern = re.compile(r""" (?P<key> # Start of group 'key' """ + _LegalCharsPatt + r"""+? # Any word of at least one letter ) # End of group 'key' - \s*=\s* # Equal Sign - (?P<val> # Start of group 'val' - "(?:[^\\"]|\\.)*" # Any doublequoted string - | # or + ( # Optional group: there may not be a value. + \s*=\s* # Equal Sign + (?P<val> # Start of group 'val' + "(?:[^\\"]|\\.)*" # Any doublequoted string + | # or \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' - \s*;? # Probably ending in a semi-colon + | # or + """ + _LegalCharsPatt + r"""* # Any word or empty string + ) # End of group 'val' + )? # End of optional value group + \s* # Any number of spaces. + (\s+|;|$) # Ending either at space, semicolon, or EOS. """, re.ASCII) # May be removed if safe. @@ -549,8 +554,12 @@ class BaseCookie(dict): M[key[1:]] = value elif key.lower() in Morsel._reserved: if M: - M[key] = _unquote(value) - else: + if value is None: + if key.lower() in Morsel._flags: + M[key] = True + else: + M[key] = _unquote(value) + elif value is not None: rval, cval = self.value_decode(value) self.__set(key, rval, cval) M = self[key] |