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 zhangchaospecial
Recipients zhangchaospecial
Date 2021-06-24.09:40:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1624527658.23.0.171750310771.issue44502@roundup.psfhosted.org>
In-reply-to
Content
In cpython/Lib/test/test_sys_settrace.py, there is a function:
1 def no_pop_blocks():
2    y = 1
3    while not y:
4        bla
5    x = 1

what does bla mean? bla is not defined anywhere. But the function can pass the compilation. bla is treated as a global name in symtable during compilation. Why does python allow this statement (line 4)? Will line 4 be deleted in the future? Or be replaced with pass?
History
Date User Action Args
2021-06-24 09:40:58zhangchaospecialsetrecipients: + zhangchaospecial
2021-06-24 09:40:58zhangchaospecialsetmessageid: <1624527658.23.0.171750310771.issue44502@roundup.psfhosted.org>
2021-06-24 09:40:58zhangchaospeciallinkissue44502 messages
2021-06-24 09:40:58zhangchaospecialcreate