HomeSort by relevance Sort by last modified time
    Searched refs:SimpleCookie (Results 1 - 4 of 4) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cookie.py 9 # Currently this only tests SimpleCookie
14 'repr': "<SimpleCookie: chips='ahoy' vienna='finger'>",
20 'repr': '''<SimpleCookie: keebler='E=mc2; L="Loves"; fudge=\\n;'>''',
27 'repr': "<SimpleCookie: keebler='E=mc2'>",
33 C = Cookie.SimpleCookie()
41 C = Cookie.SimpleCookie()
66 C = Cookie.SimpleCookie()
70 C = Cookie.SimpleCookie()
78 C = Cookie.SimpleCookie()
85 C = Cookie.SimpleCookie()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cookie.py 9 # Currently this only tests SimpleCookie
14 'repr': "<SimpleCookie: chips='ahoy' vienna='finger'>",
20 'repr': '''<SimpleCookie: keebler='E=mc2; L="Loves"; fudge=\\n;'>''',
27 'repr': "<SimpleCookie: keebler='E=mc2'>",
33 C = Cookie.SimpleCookie()
41 C = Cookie.SimpleCookie()
66 C = Cookie.SimpleCookie()
70 C = Cookie.SimpleCookie()
78 C = Cookie.SimpleCookie()
85 C = Cookie.SimpleCookie()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Cookie.py 57 >>> C = Cookie.SimpleCookie()
132 SimpleCookie
134 The SimpleCookie expects that all values should be standard strings.
135 Just to be sure, SimpleCookie invokes the str() builtin to convert
138 >>> C = Cookie.SimpleCookie()
222 __all__ = ["CookieError","BaseCookie","SimpleCookie","SerialCookie",
670 class SimpleCookie(BaseCookie):
671 """SimpleCookie
672 SimpleCookie supports strings as cookie values. When setting
673 the value using the dictionary assignment notation, SimpleCookie
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Cookie.py 57 >>> C = Cookie.SimpleCookie()
132 SimpleCookie
134 The SimpleCookie expects that all values should be standard strings.
135 Just to be sure, SimpleCookie invokes the str() builtin to convert
138 >>> C = Cookie.SimpleCookie()
222 __all__ = ["CookieError","BaseCookie","SimpleCookie","SerialCookie",
670 class SimpleCookie(BaseCookie):
671 """SimpleCookie
672 SimpleCookie supports strings as cookie values. When setting
673 the value using the dictionary assignment notation, SimpleCookie
    [all...]

Completed in 121 milliseconds