mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Make 'super' subclassable. (Not sure how useful this is yet. :-)
This commit is contained in:
parent
e023fe0eef
commit
31bcff8815
1 changed files with 1 additions and 1 deletions
|
@ -3259,7 +3259,7 @@ PyTypeObject PySuper_Type = {
|
|||
super_getattro, /* tp_getattro */
|
||||
0, /* tp_setattro */
|
||||
0, /* tp_as_buffer */
|
||||
Py_TPFLAGS_DEFAULT, /* tp_flags */
|
||||
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
|
||||
super_doc, /* tp_doc */
|
||||
0, /* tp_traverse */
|
||||
0, /* tp_clear */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue