diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-07-07 16:51:37 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-07-07 16:51:37 (GMT) |
commit | 6d0a4c79cff39f45b6990b3dcb6bd653950a8014 (patch) | |
tree | f66c8c15fad61a6750e74eb39316fc38a776bef1 /Lib/test/output | |
parent | 803526b9e222077c5f9391d7e7348156eb7ba7da (diff) | |
download | cpython-6d0a4c79cff39f45b6990b3dcb6bd653950a8014.zip cpython-6d0a4c79cff39f45b6990b3dcb6bd653950a8014.tar.gz cpython-6d0a4c79cff39f45b6990b3dcb6bd653950a8014.tar.bz2 |
Fix for SF bug #432621: httplib: multiple Set-Cookie headers
If multiple header fields with the same name occur, they are combined
according to the rules in RFC 2616 sec 4.2:
Appending each subsequent field-value to the first, each separated by
a comma. The order in which header fields with the same field-name are
received is significant to the interpretation of the combined field
value.
Diffstat (limited to 'Lib/test/output')
-rw-r--r-- | Lib/test/output/test_httplib | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/output/test_httplib b/Lib/test/output/test_httplib index 683566b..d9b3fa1 100644 --- a/Lib/test/output/test_httplib +++ b/Lib/test/output/test_httplib @@ -5,3 +5,6 @@ reply: 'HTTP/1.1 400.100 Not Ok\r\n' BadStatusLine raised as expected InvalidURL raised as expected InvalidURL raised as expected +reply: 'HTTP/1.1 200 OK\r\n' +header: Set-Cookie: Customer="WILE_E_COYOTE"; Version="1"; Path="/acme" +header: Set-Cookie: Part_Number="Rocket_Launcher_0001"; Version="1"; Path="/acme" |