mirror of https://github.com/python/cpython
Fix Issue2193 - Allow ":" character in Cookie NAME values
This commit is contained in:
parent
b8c0206bd4
commit
3a441c1bed
|
@ -159,7 +159,7 @@ class CookieError(Exception):
|
|||
# _LegalChars is the list of chars which don't require "'s
|
||||
# _Translator hash-table for fast quoting
|
||||
#
|
||||
_LegalChars = string.ascii_letters + string.digits + "!#$%&'*+-.^_`|~"
|
||||
_LegalChars = string.ascii_letters + string.digits + "!#$%&'*+-.^_`|~:"
|
||||
_Translator = {
|
||||
'\000' : '\\000', '\001' : '\\001', '\002' : '\\002',
|
||||
'\003' : '\\003', '\004' : '\\004', '\005' : '\\005',
|
||||
|
|
|
@ -34,6 +34,15 @@ class CookieTests(unittest.TestCase):
|
|||
'dict': {'keebler' : 'E=mc2'},
|
||||
'repr': "<SimpleCookie: keebler='E=mc2'>",
|
||||
'output': 'Set-Cookie: keebler=E=mc2'},
|
||||
|
||||
# Cookies with ':' character in their name. Though not mentioned in
|
||||
# RFC, servers / browsers allow it.
|
||||
|
||||
{'data': 'key:term=value:term',
|
||||
'dict': {'key:term' : 'value:term'},
|
||||
'repr': "<SimpleCookie: key:term='value:term'>",
|
||||
'output': 'Set-Cookie: key:term=value:term'},
|
||||
|
||||
]
|
||||
|
||||
for case in cases:
|
||||
|
|
Loading…
Reference in New Issue