diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-17 01:46:37 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-17 01:46:37 (GMT) |
commit | 5b883296f606d6c401ca27148cd826b0f9529f70 (patch) | |
tree | a22c55d6a836122860722bc0413aca023f2018ef /Lib/http/cookies.py | |
parent | 5f9fd1dd79e5342d918275e1541cf9b748d8ba6b (diff) | |
parent | bd341629b0435a524f9f355de178af22cc6d31ea (diff) | |
download | cpython-5b883296f606d6c401ca27148cd826b0f9529f70.zip cpython-5b883296f606d6c401ca27148cd826b0f9529f70.tar.gz cpython-5b883296f606d6c401ca27148cd826b0f9529f70.tar.bz2 |
merge 3.4 (#22986)
Diffstat (limited to 'Lib/http/cookies.py')
-rw-r--r-- | Lib/http/cookies.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py index 7ec9274..73acbc7 100644 --- a/Lib/http/cookies.py +++ b/Lib/http/cookies.py @@ -330,8 +330,8 @@ class Morsel(dict): "comment" : "Comment", "domain" : "Domain", "max-age" : "Max-Age", - "secure" : "secure", - "httponly" : "httponly", + "secure" : "Secure", + "httponly" : "HttpOnly", "version" : "Version", } |