Message373128
As far as I can tell sometime in 3.8.x (likely 3.8.3) the following snippet changed result:
import ast
import inspect
cell = '[x for x in l]'
code = compile(cell, "<>", "exec", flags=getattr(ast,'PyCF_ALLOW_TOP_LEVEL_AWAIT', 0x0))
inspect.CO_COROUTINE & code.co_flags == inspect.CO_COROUTINE
Use to be False in 3.8.2 I believe and is False after.
This is problematic when you try to detect top-level await code. |
|
| Date |
User |
Action |
Args |
| 2020-07-06 15:00:52 | mbussonn | set | recipients:
+ mbussonn |
| 2020-07-06 15:00:52 | mbussonn | set | messageid: <1594047652.43.0.575402047323.issue41218@roundup.psfhosted.org> |
| 2020-07-06 15:00:52 | mbussonn | link | issue41218 messages |
| 2020-07-06 15:00:52 | mbussonn | create | |
|