string
|
__getitem__(self,
key,
default=None)
If the key ends with _escaped, then this will retrieve the value
for the key and escape it. |
source code
|
|
|
__init__(self)
Initializes the internal dict. |
source code
|
|
|
|
string
|
get(self,
key,
default=None)
This turns around and calls __getitem__(key, default). |
source code
|
|
boolean
|
has_key(self,
key)
If the key ends with _encoded or _urlencoded, we strip that off
and then check the wrapped dict to see if it has the adjusted
key. |
source code
|
|
list of varies
|
keys(self)
Returns a list of the keys that can be accessed through
__getitem__. |
source code
|
|
|
update(self,
newdict)
This calls update(newdict) on the wrapped dict. |
source code
|
|
list of strings
|
|