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 brandtbucher
Recipients brandtbucher, gregory.p.smith, twouters
Date 2020-10-28.20:35:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603917309.42.0.55777935872.issue42185@roundup.psfhosted.org>
In-reply-to
Content
In any case, I think the proposed change could break the current behavior:

>>> x = "global"
>>> class C:
...     x = "local"
...     l = x
...     del x
...     g = x
... 
>>> C.l
'local'
>>> C.g
'global'
History
Date User Action Args
2020-10-28 20:35:09brandtbuchersetrecipients: + brandtbucher, twouters, gregory.p.smith
2020-10-28 20:35:09brandtbuchersetmessageid: <1603917309.42.0.55777935872.issue42185@roundup.psfhosted.org>
2020-10-28 20:35:09brandtbucherlinkissue42185 messages
2020-10-28 20:35:09brandtbuchercreate