Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: e7abfd7cefc4e737eef3a4b8c2b26fec3c97fac0 authored by Martin v. Löwis on 24 January 2010, 14:24:46 UTC
Prepare for 2.5.5c2.
Tip revision: e7abfd7
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 type="text/javascript">
        <!-- begin hiding
        document.cookie = "Customer="WILE_E_COYOTE"; Path=/acme; Version=1";
        // end hiding -->
        </script>
        

        <script type="text/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