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 Arfrever
Recipients Arfrever, amaury.forgeotdarc, isoschiz, ncoghlan, ned.deily, pconnell, pitrou, python-dev, terry.reedy, theDarkBrainer
Date 2013-05-05.04:57:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1367729845.72.0.43625077521.issue17408@psf.upfronthosting.co.za>
In-reply-to
Content
Commit 8c1385205a35 causes segmentation fault (in non-debug build) or abort (in debug build) during interpreter shutdown after copying of e.g. bytes or object().

$ python -c 'import copy; copy.copy(b""); print("text")'
text
Segmentation fault
$ python -c 'import copy; copy.copy(object()); print("text")'
text
Segmentation fault
History
Date User Action Args
2013-05-05 04:57:25Arfreversetrecipients: + Arfrever, terry.reedy, amaury.forgeotdarc, ncoghlan, pitrou, ned.deily, python-dev, pconnell, theDarkBrainer, isoschiz
2013-05-05 04:57:25Arfreversetmessageid: <1367729845.72.0.43625077521.issue17408@psf.upfronthosting.co.za>
2013-05-05 04:57:25Arfreverlinkissue17408 messages
2013-05-05 04:57:25Arfrevercreate