fixing typos

This commit is contained in:
Luciano Ramalho
2014-11-14 13:06:32 -02:00
parent a54bf6540c
commit b3e36a2a41

View File

@@ -1,4 +1,4 @@
"""Trasformdict: a mapping that transforms keys on lookup """Transformdict: a mapping that transforms keys on lookup
This module and ``test_transformdict.py`` were extracted from a This module and ``test_transformdict.py`` were extracted from a
patch contributed to Python by Antoine Pitrou implementing his patch contributed to Python by Antoine Pitrou implementing his
@@ -81,7 +81,7 @@ class TransformDict(MutableMapping):
del self._data[transformed] del self._data[transformed]
del self._original[transformed] del self._original[transformed]
# Methods overriden to mitigate the performance overhead. # Methods overridden to mitigate the performance overhead.
def clear(self): def clear(self):
'D.clear() -> None. Remove all items from D.' 'D.clear() -> None. Remove all items from D.'