summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descrtut.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-10-09 19:39:46 (GMT)
committerGuido van Rossum <guido@python.org>2001-10-09 19:39:46 (GMT)
commit7b9144b2ee0b34a0f4569b0e6277b12d1066c6be (patch)
tree49d264e9c25ea5045303b30837dd6cf2004900f1 /Lib/test/test_descrtut.py
parentdca939899d97cc8706163d28de83b951c0213524 (diff)
downloadcpython-7b9144b2ee0b34a0f4569b0e6277b12d1066c6be.zip
cpython-7b9144b2ee0b34a0f4569b0e6277b12d1066c6be.tar.gz
cpython-7b9144b2ee0b34a0f4569b0e6277b12d1066c6be.tar.bz2
Halfway checkin. This is still messy, but it's beginning to address
the problem that slots weren't inherited properly. override_slots() no longer exists; in its place comes fixup_slot_dispatchers() which does more and different work and is table-based. (Eventually I want this table also to replace all the little tab_foo tables.) Also add a wrapper for __delslice__; this required a change in test_descrtut.py.
Diffstat (limited to 'Lib/test/test_descrtut.py')
-rw-r--r--Lib/test/test_descrtut.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_descrtut.py b/Lib/test/test_descrtut.py
index 80e7f05..2e019aa 100644
--- a/Lib/test/test_descrtut.py
+++ b/Lib/test/test_descrtut.py
@@ -190,6 +190,7 @@ Instead, you can get the same information from the list type:
'__contains__',
'__delattr__',
'__delitem__',
+ '__delslice__',
'__eq__',
'__ge__',
'__getattribute__',