There are no implemented interfaces.
fromkeys
(type: builtin_function_or_method
)
<built-in method fromkeys of type object at 0x835993c>
clear(...)
copy(...)
get(...)
has_key(...)
items(...)
iteritems(...)
iterkeys(...)
itervalues(...)
keys(...)
pop(...)
popitem(...)
setdefault(...)
update(...)
values(...)
js_output(attrs=None)
Return a string suitable for JavaScript.
load(rawdata)
Load cookies from a string (presumably HTTP_COOKIE) or
from a dictionary. Loading cookies from a dictionary d
is equivalent to calling:
map(Cookie.__setitem__, d.keys(), d.values())
output(attrs=None, header='Set-Cookie:', sep='\n')
Return a string suitable for HTTP.
value_decode(val)
real_value, coded_value = value_decode(STRING) Called prior to setting a cookie's value from the network representation. The VALUE is the value read from HTTP header. Override this function to modify the behavior of cookies.
value_encode(val)
real_value, coded_value = value_encode(VALUE) Called prior to setting a cookie's value from the dictionary representation. The VALUE is the value being assigned. Override this function to modify the behavior of cookies.