diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-14 19:54:38 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-14 19:54:38 +0200 |
commit | a33221fe5e5f034580f3913e28c509454b157c03 (patch) | |
tree | c739754772b51510262cd98a2082f9ce4b8d6fcc /Objects | |
parent | bb2e2b4d5fbea49cdd0f9fe842272a4ae8626092 (diff) | |
parent | 7373fff754c7fa630e79386894ee792c561aef0a (diff) | |
download | cpython-a33221fe5e5f034580f3913e28c509454b157c03.tar.gz |
Merge from 3.6.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 96444ae46d..329261b037 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -6878,34 +6878,7 @@ update_one_slot(PyTypeObject *type, slotdef *p) sanity checks and constructing a new argument list. Cut all that nonsense short -- this speeds up instance creation tremendously. */ - PyObject *self = PyCFunction_GET_SELF(descr); - if (!self || !PyType_Check(self)) { - /* This should never happen because - tp_new_wrapper expects a type for self. - Use slot_tp_new which will call - tp_new_wrapper which will raise an - exception. */ - specific = (void *)slot_tp_new; - } - else { - PyTypeObject *staticbase; - specific = ((PyTypeObject *)self)->tp_new; - /* Check that the user does not do anything - silly and unsafe like object.__new__(dict). - To do this, we check that the most derived - base that's not a heap type is this type. */ - staticbase = type->tp_base; - while (staticbase && - (staticbase->tp_flags & Py_TPFLAGS_HEAPTYPE)) - staticbase = staticbase->tp_base; - if (staticbase && - staticbase->tp_new != specific) - /* Seems to be unsafe, better use - slot_tp_new which will call - tp_new_wrapper which will raise an - exception if it is unsafe. */ - specific = (void *)slot_tp_new; - } + specific = (void *)type->tp_new; /* XXX I'm not 100% sure that there isn't a hole in this reasoning that requires additional sanity checks. I'll buy the first person to |