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 sirkonst
Recipients sirkonst
Date 2015-12-29.11:40:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1451389204.03.0.825789428132.issue25973@psf.upfronthosting.co.za>
In-reply-to
Content
Code:
# -------------------------------
__obj = object()

class Foo:
    def f1(self):
        nonlocal __obj

f = Foo()
f.f1()  # <-- segmentation fault
# -------------------------------
History
Date User Action Args
2015-12-29 11:40:04sirkonstsetrecipients: + sirkonst
2015-12-29 11:40:04sirkonstsetmessageid: <1451389204.03.0.825789428132.issue25973@psf.upfronthosting.co.za>
2015-12-29 11:40:03sirkonstlinkissue25973 messages
2015-12-29 11:40:03sirkonstcreate