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 skrah
Recipients Arfrever, benjamin.peterson, loewis, nascheme, pitrou, python-dev, skrah
Date 2013-10-27.15:32:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
IMO we have two references to many newly created values in _PySys_Init():

       SET_SYS_FROM_STRING("hexversion",
                            PyLong_FromLong(PY_VERSION_HEX));

One from PyLong_FromLong() and the other from PyDict_SetItemString() in the
macro.  So it may well be that the fix for this issue just exposes the fact
that the last reference is no longer reachable if m_copy is cleared.
History
Date User Action Args
2013-10-27 15:32:43skrahsetrecipients: + skrah, loewis, nascheme, pitrou, benjamin.peterson, Arfrever, python-dev
2013-10-27 15:32:43skrahsetmessageid: <[email protected]>
2013-10-27 15:32:43skrahlinkissue10241 messages
2013-10-27 15:32:43skrahcreate