diff options
author | Guido van Rossum <guido@python.org> | 2001-10-09 19:39:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-10-09 19:39:46 (GMT) |
commit | 7b9144b2ee0b34a0f4569b0e6277b12d1066c6be (patch) | |
tree | 49d264e9c25ea5045303b30837dd6cf2004900f1 /Lib | |
parent | dca939899d97cc8706163d28de83b951c0213524 (diff) | |
download | cpython-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')
-rw-r--r-- | Lib/test/test_descrtut.py | 1 |
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__', |