Index of the util module
-
m
webhelpers.util
...
- Utility functions used by various web helpers
- C Partial ... - partial object, which will be in Python 2.5
-
C
UnicodeMultiDict
...
- A MultiDict wrapper that decodes returned values to unicode on the
fly. Decoding is not applied to assigned values.
- f popitem ...
- f pop ...
- f has_key ...
- f __init__ ...
- f __contains__ ...
- f getall ... - Return a list of all values matching the key (may be an empty list)
- f add ... - Add the key and value, not overwriting any previous value.
- f itervalues ...
- f dict_of_lists ... - Returns a dictionary where each key is associated with a list of values.
- f __len__ ...
- f __getitem__ ...
- f keys ...
- f __setitem__ ...
- f iteritems ...
- f copy ...
- f iterkeys ...
- f __delitem__ ...
- f setdefault ...
- f items ...
- f clear ...
- f __iter__ ...
- f values ...
- f getone ... - Get one value matching the key, raising a KeyError if multiple values were found.
- f mixed ... - Returns a dictionary where the values are either single values, or a list of values when a key/value appears more than once in this dictionary. This is similar to the kind of dictionary often used to represent the variables in a web request.
-
C
SimplerXMLGenerator
...
- f addQuickElement ... - Convenience method for adding an element with no children
- f html_escape ... - HTML-escape a string or object