Commit cc8fe040 authored by Guido van Rossum's avatar Guido van Rossum

Inherit tp_new and tp_is_gc.

Bugfix candidate.
parent 2d7e2647
......@@ -2024,6 +2024,8 @@ inherit_slots(PyTypeObject *type, PyTypeObject *base)
COPYSLOT(tp_init);
COPYSLOT(tp_alloc);
COPYSLOT(tp_free);
COPYSLOT(tp_new);
COPYSLOT(tp_is_gc);
}
}
......
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