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 MSeifert
Recipients MSeifert
Date 2017-03-12.21:10:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1489353014.2.0.721319606303.issue29800@psf.upfronthosting.co.za>
In-reply-to
Content
It's possible to create a segfault when one (inappropriatly) changes the functools.partial.keywords attribute manually. A minimal example reproducing the segfault is:

>>> from functools import partial
>>> p = partial(int)
>>> p.keywords[1] = 10
>>> repr(p)

System: Windows 10
Python: 3.5.3, 3.6.0, master-branch
History
Date User Action Args
2017-03-12 21:10:14MSeifertsetrecipients: + MSeifert
2017-03-12 21:10:14MSeifertsetmessageid: <1489353014.2.0.721319606303.issue29800@psf.upfronthosting.co.za>
2017-03-12 21:10:14MSeifertlinkissue29800 messages
2017-03-12 21:10:14MSeifertcreate