This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author arigo
Recipients arigo
Date 2016-12-06.11:52:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481025142.72.0.985036744887.issue28883@psf.upfronthosting.co.za>
In-reply-to
Content
(C6) I didn't try, but it seems that typeobject.c:mro_internal() is prone
  to a refcount crash.  It does this::

     old_mro = type->tp_mro;
     ...mro_invoke()...  /* might cause reentrance */
     type->tp_mro = new_mro;
     ...
     Py_XDECREF(old_mro);
History
Date User Action Args
2016-12-06 11:52:43arigounlinkissue28883 messages
2016-12-06 11:52:22arigosetrecipients: + arigo
2016-12-06 11:52:22arigosetmessageid: <1481025142.72.0.985036744887.issue28883@psf.upfronthosting.co.za>
2016-12-06 11:52:22arigolinkissue28883 messages
2016-12-06 11:52:22arigocreate