mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
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.
This commit is contained in:
parent
dca939899d
commit
7b9144b2ee
2 changed files with 299 additions and 137 deletions
|
@ -190,6 +190,7 @@ Instead, you can get the same information from the list type:
|
|||
'__contains__',
|
||||
'__delattr__',
|
||||
'__delitem__',
|
||||
'__delslice__',
|
||||
'__eq__',
|
||||
'__ge__',
|
||||
'__getattribute__',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue