Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 8b050afad8739d19e8f94403cb62cf198b8d583b authored by cvs2svn on 17 March 2005, 03:06:56 UTC
This commit was manufactured by cvs2svn to create tag 'r241c2'.
Tip revision: 8b050af
test_cookie
test_cookie
<SimpleCookie: chips='ahoy' vienna='finger'>
Set-Cookie: chips=ahoy;
Set-Cookie: vienna=finger;
  chips 'ahoy' 'ahoy'
Set-Cookie: chips=ahoy;
  vienna 'finger' 'finger'
Set-Cookie: vienna=finger;
<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;";
<SimpleCookie: keebler='E=mc2'>
Set-Cookie: keebler=E=mc2;
  keebler 'E=mc2' 'E=mc2'
Set-Cookie: keebler=E=mc2;
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>
        
If anything blows up after this line, it's from Cookie's doctest.
back to top