summaryrefslogtreecommitdiffstats
path: root/Lib/UserList.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-02-11 19:00:13 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-02-11 19:00:13 (GMT)
commit1021cc692d392f4c34791cf22e942dd1b1e0f519 (patch)
tree570d3ac2e64a7db4b7864fffccc63bffa5aa6aa3 /Lib/UserList.py
parent0dd1b63746c12bfb7a8623e8f2f442494f18450d (diff)
downloadcpython-1021cc692d392f4c34791cf22e942dd1b1e0f519.zip
cpython-1021cc692d392f4c34791cf22e942dd1b1e0f519.tar.gz
cpython-1021cc692d392f4c34791cf22e942dd1b1e0f519.tar.bz2
No need to register classes that already inherit from ABCs.
Diffstat (limited to 'Lib/UserList.py')
-rw-r--r--Lib/UserList.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/UserList.py b/Lib/UserList.py
index 348ea76..7617a08 100644
--- a/Lib/UserList.py
+++ b/Lib/UserList.py
@@ -71,5 +71,3 @@ class UserList(collections.MutableSequence):
self.data.extend(other.data)
else:
self.data.extend(other)
-
-collections.MutableSequence.register(UserList)