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 yurzo
Recipients yurzo
Date 2020-03-21.16:49:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584809349.61.0.7412480872.issue40033@roundup.psfhosted.org>
In-reply-to
Content
In the following example the last line throws as 'NameError: name 'Level1A' is not defined' for both 3.7 and 3.8

I assumed that Level1A should already be in scope while defining the insides of Level1B. But it isn't.
Is this a bug, or am I missing something?


from typing import List, Union


class Level0A:
    pass


class Level0B:
    class Level1A:
        subs: List[Level0A]

    class Level1B:
        subs: List[Level1A]
History
Date User Action Args
2020-03-21 16:49:09yurzosetrecipients: + yurzo
2020-03-21 16:49:09yurzosetmessageid: <1584809349.61.0.7412480872.issue40033@roundup.psfhosted.org>
2020-03-21 16:49:09yurzolinkissue40033 messages
2020-03-21 16:49:09yurzocreate