cpython: e79eddcdff63 (original) (raw)

Mercurial > cpython

changeset 99848:e79eddcdff63 3.5

Issue #22995: [UPDATE] Comment out the one of the pickleability tests in _PyObject_GetState() due to regressions observed in Cython-based projects. [#22995]

Barry Warsaw barry@python.org
date Mon, 11 Jan 2016 13:24:02 -0500
parents a6288fe5420f
children 927fd0e14d49 ef84d21f5292 54dd5c105334
files Misc/NEWS Objects/typeobject.c
diffstat 2 files changed, 12 insertions(+), 0 deletions(-)[+] [-] Misc/NEWS 3 Objects/typeobject.c 9

line wrap: on

line diff

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Release date: tba Core and Builtins ----------------- +- Issue #22995: [UPDATE] Comment out the one of the pickleability tests in

--- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -3866,6 +3866,14 @@ Py_LOCAL(PyObject *) } assert(slotnames == Py_None || PyList_Check(slotnames)); +#if 0

@@ -3883,6 +3891,7 @@ Py_LOCAL(PyObject *) return NULL; } } +#endif if (slotnames != Py_None && Py_SIZE(slotnames) > 0) { PyObject *slots;