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 fengyang.wang
Recipients fengyang.wang
Date 2017-06-05.23:56:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496706976.92.0.429062921654.issue30577@psf.upfronthosting.co.za>
In-reply-to
Content
Reduced reproduction:

class X:
    r = [1, 2, 3]
    z = [(i, j) for i in [4, 5] for j in r]

fails with "NameError: name 'r' is not defined". The expected behavior would be for r to be resolved as the r in the class namespace. Note in contrast that

class Y:
    r = [1, 2, 3]
    z = [(i, j) for j in r for i in [4, 5]]

does not fail.

(Version 3.5.2 on Windows)
History
Date User Action Args
2017-06-05 23:56:17fengyang.wangsetrecipients: + fengyang.wang
2017-06-05 23:56:16fengyang.wangsetmessageid: <1496706976.92.0.429062921654.issue30577@psf.upfronthosting.co.za>
2017-06-05 23:56:16fengyang.wanglinkissue30577 messages
2017-06-05 23:56:16fengyang.wangcreate