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 steven.daprano
Recipients stars-of-stras, steven.daprano
Date 2021-09-26.15:59:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1632671961.14.0.745112053124.issue45294@roundup.psfhosted.org>
In-reply-to
Content
This is not a bug, you are trying to print the value of the local variable DiaObjectFactoryHelper before you have defined the variable.

UnboundLocalError is a subclass of NameError that is used when the undefined name is a local variable instead of a global.
History
Date User Action Args
2021-09-26 15:59:21steven.dapranosetrecipients: + steven.daprano, stars-of-stras
2021-09-26 15:59:21steven.dapranosetmessageid: <1632671961.14.0.745112053124.issue45294@roundup.psfhosted.org>
2021-09-26 15:59:21steven.dapranolinkissue45294 messages
2021-09-26 15:59:21steven.dapranocreate