diff options
-rw-r--r-- | Lib/test/test_descr.py | 8 | ||||
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | Objects/typeobject.c | 2 |
3 files changed, 3 insertions, 10 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 9aedba2..0a5ecd5 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -4564,14 +4564,6 @@ order (MRO) for bases """ self.assertRegex(repr(method), r"<bound method qualname of <object object at .*>>") - def test_deleting_new_in_subclasses(self): - class X: - def __init__(self, a): - pass - X.__new__ = None - del X.__new__ - X(1) # should work - class DictProxyTests(unittest.TestCase): def setUp(self): @@ -204,7 +204,8 @@ Core and Builtins - Issue #25791: If __package__ != __spec__.parent or if neither __package__ or __spec__ are defined then ImportWarning is raised. -- Issue #25731: Fix set and deleting __new__ on a class. +- Issue #22995: [UPDATE] Comment out the one of the pickleability tests in + _PyObject_GetState() due to regressions observed in Cython-based projects. - Issue #25961: Disallowed null characters in the type name. diff --git a/Objects/typeobject.c b/Objects/typeobject.c index f869c8d..a647791 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -6790,7 +6790,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. */ - specific = (void *)((PyTypeObject *)PyCFunction_GET_SELF(descr))->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 |