summaryrefslogtreecommitdiff
path: root/Lib/http
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2018-04-07 16:09:42 -0400
committerGitHub <noreply@github.com>2018-04-07 16:09:42 -0400
commitc87eb09d2e3783b0b5dc0d7cb304050cbcc86ad3 (patch)
tree2843f5346789cb667f20de681b4e4ddbd413698c /Lib/http
parent1d80a561734b9932961c546b0897405a3bfbf3e6 (diff)
downloadcpython-git-c87eb09d2e3783b0b5dc0d7cb304050cbcc86ad3.tar.gz
bpo-29613: Added support for SameSite cookies (GH-6413)
* bpo-29613: Added support for SameSite cookies Implemented as per draft https://tools.ietf.org/html/draft-west-first-party-cookies-07 * Documented SameSite And suggestions by members. * Missing space :( * Updated News and contributors * Added version changed details. * Fix in documentation * fix in documentation * Clubbed test cases for same attribute into single. * Updates * Style nits + expand tests * review feedback
Diffstat (limited to 'Lib/http')
-rw-r--r--Lib/http/cookies.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py
index 7e0259ee32..4a44db8475 100644
--- a/Lib/http/cookies.py
+++ b/Lib/http/cookies.py
@@ -281,6 +281,7 @@ class Morsel(dict):
"secure" : "Secure",
"httponly" : "HttpOnly",
"version" : "Version",
+ "samesite" : "SameSite",
}
_flags = {'secure', 'httponly'}