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 christian.heimes
Recipients Mark.Shannon, christian.heimes, oleksandr.suvorov, pablogsal
Date 2020-05-22.11:15:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1590146135.15.0.985354919317.issue40728@roundup.psfhosted.org>
In-reply-to
Content
UnboundLocalError is a subclass of NameError. You are getting a more specific error here.

>>> UnboundLocalError.__mro__
(<class 'UnboundLocalError'>, <class 'NameError'>, <class 'Exception'>, <class 'BaseException'>, <class 'object'>)
History
Date User Action Args
2020-05-22 11:15:35christian.heimessetrecipients: + christian.heimes, Mark.Shannon, pablogsal, oleksandr.suvorov
2020-05-22 11:15:35christian.heimessetmessageid: <1590146135.15.0.985354919317.issue40728@roundup.psfhosted.org>
2020-05-22 11:15:35christian.heimeslinkissue40728 messages
2020-05-22 11:15:35christian.heimescreate