cpython/Lib/test/output/test_cookie
Ka-Ping Yee fa004ad36c Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings.
Switch from octal escapes to hex escapes for other nonprintable characters.
2001-01-24 17:19:08 +00:00

27 lines
873 B
Text

test_cookie
<SimpleCookie: vienna='finger' chips='ahoy'>
Set-Cookie: vienna=finger;
Set-Cookie: chips=ahoy;
vienna 'finger' 'finger'
Set-Cookie: vienna=finger;
chips 'ahoy' 'ahoy'
Set-Cookie: chips=ahoy;
<SimpleCookie: keebler='E=mc2; L="Loves"; fudge=\n;'>
Set-Cookie: keebler="E=mc2; L=\"Loves\"; fudge=\012;";
keebler 'E=mc2; L="Loves"; fudge=\n;' 'E=mc2; L="Loves"; fudge=\n;'
Set-Cookie: keebler="E=mc2; L=\"Loves\"; fudge=\012;";
Set-Cookie: Customer="WILE_E_COYOTE"; Path=/acme;
<SCRIPT LANGUAGE="JavaScript">
<!-- begin hiding
document.cookie = "Customer="WILE_E_COYOTE"; Path=/acme; Version=1;"
// end hiding -->
</script>
<SCRIPT LANGUAGE="JavaScript">
<!-- begin hiding
document.cookie = "Customer="WILE_E_COYOTE"; Path=/acme;"
// end hiding -->
</script>