No need to register classes that already inherit from ABCs.

This commit is contained in:
Raymond Hettinger 2008-02-11 19:00:13 +00:00
parent 0dd1b63746
commit 1021cc692d
4 changed files with 0 additions and 9 deletions

View file

@ -71,5 +71,3 @@ def extend(self, other):
self.data.extend(other.data)
else:
self.data.extend(other)
collections.MutableSequence.register(UserList)

View file

@ -235,8 +235,6 @@ def __imul__(self, n):
def insert(self, index, value):
self[index:index] = value
collections.MutableSequence.register(MutableString)
if __name__ == "__main__":
# execute the regression test to stdout, if called as a script:
import os

View file

@ -160,8 +160,6 @@ def fromkeys(cls, iterable, value=None):
d[key] = value
return d
MutableMapping.register(UserDict)
################################################################################

View file

@ -194,7 +194,6 @@ def values(self):
L.append(o)
return L
collections.MutableMapping.register(WeakValueDictionary)
class KeyedRef(ref):
"""Specialized reference that includes a key corresponding to the value.
@ -350,5 +349,3 @@ def update(self, dict=None, **kwargs):
d[ref(key, self._remove)] = value
if len(kwargs):
self.update(kwargs)
collections.MutableMapping.register(WeakKeyDictionary)