Merge pull request #1069 from r0fls/1050

add samesite cookie to cookie keys
This commit is contained in:
Raphael Deem 2017-12-24 02:50:37 -08:00 committed by GitHub
commit 008cbe5ce7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,6 +83,7 @@ class Cookie(dict):
"secure": "Secure",
"httponly": "HttpOnly",
"version": "Version",
"samesite": "SameSite",
}
_flags = {'secure', 'httponly'}