Codebase list python-frozendict / 7e078bf
Merge pull request #12 from lurch/patch-1 docstring correction Santiago Lezica authored 7 years ago GitHub committed 7 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
1515 class frozendict(collections.Mapping):
1616 """
1717 An immutable wrapper around dictionaries that implements the complete :py:class:`collections.Mapping`
18 interface. It can be used as a drop-in replacement for dictionaries where immutability and ordering are desired.
18 interface. It can be used as a drop-in replacement for dictionaries where immutability is desired.
1919 """
2020
2121 dict_cls = dict
5353
5454 class FrozenOrderedDict(frozendict):
5555 """
56 A FrozenDict subclass that maintains key order
56 A frozendict subclass that maintains key order
5757 """
5858
5959 dict_cls = OrderedDict