[ Module Hierarchy
| Class Hierarchy ]
Class Hierarchy
- distutils.cmd.Command:
Abstract base class for defining command classes, the "worker bees"
of the Distutils.
- gettext.NullTranslations
- object:
The most base type
- exceptions.BaseException:
Common base class for all exceptions
- exceptions.Exception:
Common base class for all non-exit exceptions.
- exceptions.StandardError:
Base class for all standard Python exceptions that do not represent
interpreter exiting.
- exceptions.ValueError:
Inappropriate argument value (of correct type).
- babel.messages.catalog.TranslationError:
Exception thrown by translation checkers when invalid message
translations are encountered.
- babel.core.UnknownLocaleError:
Exception thrown when a locale is requested for which no locale data
is available.
- babel.messages.catalog.Catalog:
Representation of a message catalog.
- babel.messages.frontend.CommandLineInterface:
Command-line interface.
- babel.support.Format:
Wrapper class providing the various date and number formatting functions
bound to a specific locale and time-zone.
- babel.support.LazyProxy:
Class for proxy objects that delegate to a specified function to evaluate
the actual object.
- babel.core.Locale:
Representation of a specific locale.
- babel.messages.catalog.Message:
Representation of a single message in a catalog.
- babel.support.Translations:
An extended translation catalog class.
- dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.
- tuple:
tuple() -> empty tuple
tuple(iterable) -> tuple initialized from iterable's items