No need to register classes that already inherit from ABCs.

This commit is contained in:
Raymond Hettinger 2008-02-11 18:51:08 +00:00
parent cd873fc142
commit 31f6bc018b
2 changed files with 0 additions and 4 deletions

View File

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

View File

@ -214,8 +214,6 @@ class MutableString(UserString, collections.MutableSequence):
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