mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Added test for patch #103473: test an unquoted cookie value containing '='
This commit is contained in:
parent
715346060a
commit
8b94b1c74a
2 changed files with 7 additions and 0 deletions
|
@ -10,6 +10,9 @@ cases = [
|
|||
('chips=ahoy; vienna=finger', {'chips':'ahoy', 'vienna':'finger'}),
|
||||
('keebler="E=mc2; L=\\"Loves\\"; fudge=\\012;";',
|
||||
{'keebler' : 'E=mc2; L="Loves"; fudge=\012;'}),
|
||||
|
||||
# Check illegal cookies that have an '=' char in an unquoted value
|
||||
('keebler=E=mc2;', {'keebler' : 'E=mc2'})
|
||||
]
|
||||
|
||||
for data, dict in cases:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue