Home | History | Annotate | Download | only in python2.7

Lines Matching refs:SimpleCookie

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
682 # end SimpleCookie