| Trees | Indices | Help |
|
|---|
|
|
|
|||
|
Mapping In python-3.0, the UserDict.DictMixin class has been replaced by Mapping and MutableMapping from the collections module, but 2to3 doesn't currently account for this change: |
|||
|
MutableMapping A mutable vesion of the Mapping class. |
|||
|
UserDict Use this class as a substitute for UserDict.UserDict so that code converted via 2to3 will run: |
|||
| OrderedDict | |||
|
ProtectedDict given an initial dict, this wraps that dict storing changes in a secondary dict, protecting the underlying dict from changes |
|||
|
LazyLoad Lazy loading of values for a dict |
|||
|
|||
| SlotDict |
|
||
|
|||
_slot_dict_classes = <WeakValueDictionary at 163988300>
|
|||
__package__ =
|
|||
Imports: sys, weakref
|
|||
Generates mapping classes that behave similar to a dict but store values as object attributes that are allocated via __slots__. Instances of these objects have a smaller memory footprint than a normal dict object.
|
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Thu May 23 22:25:33 2013 | http://epydoc.sourceforge.net |