diff options
| author | Benjamin Peterson <benjamin@python.org> | 2015-01-16 20:46:37 -0500 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2015-01-16 20:46:37 -0500 |
| commit | 5b883296f606d6c401ca27148cd826b0f9529f70 (patch) | |
| tree | a22c55d6a836122860722bc0413aca023f2018ef | |
| parent | 5f9fd1dd79e5342d918275e1541cf9b748d8ba6b (diff) | |
| parent | bd341629b0435a524f9f355de178af22cc6d31ea (diff) | |
| download | cpython-git-5b883296f606d6c401ca27148cd826b0f9529f70.tar.gz | |
merge 3.4 (#22986)
| -rw-r--r-- | Lib/http/cookies.py | 4 | ||||
| -rw-r--r-- | Lib/test/test_http_cookies.py | 4 | ||||
| -rw-r--r-- | Misc/NEWS | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py index 7ec927447c..73acbc718a 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", } diff --git a/Lib/test/test_http_cookies.py b/Lib/test/test_http_cookies.py index 7c0e01b075..ee30f17480 100644 --- a/Lib/test/test_http_cookies.py +++ b/Lib/test/test_http_cookies.py @@ -114,7 +114,7 @@ class CookieTests(unittest.TestCase): C['Customer']['secure'] = True C['Customer']['httponly'] = True self.assertEqual(C.output(), - 'Set-Cookie: Customer="WILE_E_COYOTE"; httponly; secure') + 'Set-Cookie: Customer="WILE_E_COYOTE"; HttpOnly; Secure') def test_secure_httponly_false_if_not_present(self): C = cookies.SimpleCookie() @@ -145,7 +145,7 @@ class CookieTests(unittest.TestCase): C = cookies.SimpleCookie() C.load('eggs = scrambled ; secure ; path = bar ; foo=foo ') self.assertEqual(C.output(), - 'Set-Cookie: eggs=scrambled; Path=bar; secure\r\nSet-Cookie: foo=foo') + 'Set-Cookie: eggs=scrambled; Path=bar; Secure\r\nSet-Cookie: foo=foo') def test_quoted_meta(self): # Try cookie with quoted meta-data @@ -203,6 +203,9 @@ Core and Builtins Library ------- +- Issue #23250: In the http.cookies module, capitalize "HttpOnly" and "Secure" + as they are written in the standard. + - Issue #23063: In the disutils' check command, fix parsing of reST with code or code-block directives. |
