Closed
Description
Crash report
When property
methods getter()
, setter()
or deleter()
are called with None as argument, they call Py_XDECREF()
on it. Now, when None is immortal, it perhaps have no effect, but in earlier Python versions it could have bad consequences. It was not reported earlier only because nobody normally calls them with None.