mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
merge 3.4 (#22986)
This commit is contained in:
commit
5b883296f6
3 changed files with 7 additions and 4 deletions
|
|
@ -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",
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ def test_set_secure_httponly_attrs(self):
|
|||
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 @@ def test_extra_spaces(self):
|
|||
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.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue