diff options
author | Guido van Rossum <guido@python.org> | 2002-04-05 22:04:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-04-05 22:04:18 (GMT) |
commit | 6b8ab74c8aecef19314375c440669b4364a236fe (patch) | |
tree | 4ef0d831655c967302f9dc04800ae25ee617d7ec /Objects | |
parent | d1bfe5e5fdb65c1ee0cd344c1446fef3656be2b4 (diff) | |
download | cpython-6b8ab74c8aecef19314375c440669b4364a236fe.zip cpython-6b8ab74c8aecef19314375c440669b4364a236fe.tar.gz cpython-6b8ab74c8aecef19314375c440669b4364a236fe.tar.bz2 |
Don't inherit tp_new! This is a retraction of half of the previous
checkin. And since that one was, this one is also a:
Bugfix candidate.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 849840c..71d22f3 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2024,7 +2024,6 @@ inherit_slots(PyTypeObject *type, PyTypeObject *base) COPYSLOT(tp_init); COPYSLOT(tp_alloc); COPYSLOT(tp_free); - COPYSLOT(tp_new); COPYSLOT(tp_is_gc); } } |