summaryrefslogtreecommitdiffstats
path: root/Lib/Cookie.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-07-02 07:48:27 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2014-07-02 07:48:27 (GMT)
commitcf0a706c15e7e82cceebbaf15a204f36ccece4d9 (patch)
treea3b0c6626599a95b89cce45354da7405525f555d /Lib/Cookie.py
parent228b99e8a40554f75ba631e8daf42f7fb625bd0c (diff)
downloadcpython-cf0a706c15e7e82cceebbaf15a204f36ccece4d9.zip
cpython-cf0a706c15e7e82cceebbaf15a204f36ccece4d9.tar.gz
cpython-cf0a706c15e7e82cceebbaf15a204f36ccece4d9.tar.bz2
Issue #19870: BaseCookie now parses 'secure' and 'httponly' flags.
Backport of issue #16611.
Diffstat (limited to 'Lib/Cookie.py')
-rw-r--r--Lib/Cookie.py15
1 files changed, 12 insertions, 3 deletions
diff --git a/Lib/Cookie.py b/Lib/Cookie.py
index 452d4e3..5fbbf94 100644
--- a/Lib/Cookie.py
+++ b/Lib/Cookie.py
@@ -426,6 +426,8 @@ class Morsel(dict):
"version" : "Version",
}
+ _flags = {'secure', 'httponly'}
+
def __init__(self):
# Set defaults
self.key = self.value = self.coded_value = None
@@ -532,6 +534,7 @@ _CookiePattern = re.compile(
r"(?P<key>" # Start of group 'key'
""+ _LegalCharsPatt +"+?" # Any word of at least one letter, nongreedy
r")" # End of group 'key'
+ r"(" # Optional group: there may not be a value.
r"\s*=\s*" # Equal Sign
r"(?P<val>" # Start of group 'val'
r'"(?:[^\\"]|\\.)*"' # Any doublequoted string
@@ -540,7 +543,9 @@ _CookiePattern = re.compile(
r"|" # or
""+ _LegalCharsPatt +"*" # Any word or empty string
r")" # End of group 'val'
- r"\s*;?" # Probably ending in a semi-colon
+ r")?" # End of optional value group
+ r"\s*" # Any number of spaces.
+ r"(\s+|;|$)" # Ending either at space, semicolon, or EOS.
)
@@ -656,8 +661,12 @@ class BaseCookie(dict):
M[ K[1:] ] = V
elif K.lower() in Morsel._reserved:
if M:
- M[ K ] = _unquote(V)
- else:
+ if V is None:
+ if K.lower() in Morsel._flags:
+ M[K] = True
+ else:
+ M[K] = _unquote(V)
+ elif V is not None:
rval, cval = self.value_decode(V)
self.__set(K, rval, cval)
M = self[K]