Commit 7b9144b2 authored by Guido van Rossum's avatar Guido van Rossum

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.
parent dca93989
...@@ -190,6 +190,7 @@ Instead, you can get the same information from the list type: ...@@ -190,6 +190,7 @@ Instead, you can get the same information from the list type:
'__contains__', '__contains__',
'__delattr__', '__delattr__',
'__delitem__', '__delitem__',
'__delslice__',
'__eq__', '__eq__',
'__ge__', '__ge__',
'__getattribute__', '__getattribute__',
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment