| Method Summary |
| |
__init__(self,
input)
|
| |
__repr__(self)
|
| |
__setitem__(self,
key,
value)
Dictionary style assignment. |
| |
__str__(self,
attrs,
header,
sep)
Return a string suitable for HTTP. |
| |
js_output(self,
attrs)
Return a string suitable for JavaScript. |
| |
load(self,
rawdata)
Load cookies from a string (presumably HTTP_COOKIE) or from a
dictionary. |
| |
output(self,
attrs,
header,
sep)
Return a string suitable for HTTP. |
| |
value_decode(self,
val)
real_value, coded_value = value_decode(STRING) Called prior to setting
a cookie's value from the network representation. |
| |
value_encode(self,
val)
real_value, coded_value = value_encode(VALUE) Called prior to setting
a cookie's value from the dictionary representation. |
| Inherited from UserDict |
| |
__cmp__(self,
dict)
|
| |
__contains__(self,
key)
|
| |
__delitem__(self,
key)
|
| |
__getitem__(self,
key)
|
| |
__len__(self)
|
| |
clear(self)
|
| |
copy(self)
|
| |
fromkeys(cls,
iterable,
value)
(Class method)
|
| |
get(self,
key,
failobj)
|
| |
has_key(self,
key)
|
| |
items(self)
|
| |
iteritems(self)
|
| |
iterkeys(self)
|
| |
itervalues(self)
|
| |
keys(self)
|
| |
pop(self,
key,
*args)
|
| |
popitem(self)
|
| |
setdefault(self,
key,
failobj)
|
| |
update(self,
dict)
|
| |
values(self)
|