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 mjpieters
Recipients mjpieters
Date 2016-03-03.18:11:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1457028699.66.0.294007627393.issue26477@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry, that should have read "the forward references section of PEP 484".

The section uses this example:

# File models/a.py
from models import b
class A(Model):
    def foo(self, b: 'b.B'): ...

# File models/b.py
from models import a
class B(Model):
    def bar(self, a: 'a.A'): ...

# File main.py
from models.a import A
from models.b import B

which doesn't fail because the forward references are not being tested until after all imports have completed; creating a Union however triggers a subclass test between the different types in the union.
History
Date User Action Args
2016-03-03 18:11:39mjpieterssetrecipients: + mjpieters
2016-03-03 18:11:39mjpieterssetmessageid: <1457028699.66.0.294007627393.issue26477@psf.upfronthosting.co.za>
2016-03-03 18:11:39mjpieterslinkissue26477 messages
2016-03-03 18:11:39mjpieterscreate