Home
last modified time | relevance | path

Searched refs:PyCF_ALLOW_TOP_LEVEL_AWAIT (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Include/
Dcompile.h32 #define PyCF_ALLOW_TOP_LEVEL_AWAIT 0x2000 macro
33 #define PyCF_COMPILE_MASK (PyCF_ONLY_AST | PyCF_ALLOW_TOP_LEVEL_AWAIT | \
/external/python/cpython3/Lib/asyncio/
D__main__.py18 self.compile.compiler.flags |= ast.PyCF_ALLOW_TOP_LEVEL_AWAIT
/external/python/cpython3/Misc/NEWS.d/
D3.9.0b5.rst89 ast.PyCF_ALLOW_TOP_LEVEL_AWAIT would aggressively mark list comprehension
D3.9.0a5.rst148 functions and ``PyCF_ALLOW_TOP_LEVEL_AWAIT`` is set (like in the asyncio
159 ``PyCF_ALLOW_TOP_LEVEL_AWAIT`` flag is given. Patch by Batuhan Taskaya.
D3.8.0b1.rst311 ``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` flag, which allow to compile sources
/external/python/cpython3/Lib/test/
Dtest_builtin.py389 flags=ast.PyCF_ALLOW_TOP_LEVEL_AWAIT)
435 flags=ast.PyCF_ALLOW_TOP_LEVEL_AWAIT)
486 flags=ast.PyCF_ALLOW_TOP_LEVEL_AWAIT)
502 co = compile(code, '?', 'exec', flags=ast.PyCF_ALLOW_TOP_LEVEL_AWAIT)
/external/python/cpython3/Doc/library/
Dast.rst1771 .. data:: PyCF_ALLOW_TOP_LEVEL_AWAIT
Dfunctions.rst307 ``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` can now be passed in flags to enable
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1092 ``PyCF_ALLOW_TOP_LEVEL_AWAIT`` was clashing with ``CO_FUTURE_DIVISION``.
D3.8.rst688 ``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` flag. With this new flag passed,
/external/python/cpython3/Python/
Dcompile.c44 (c->c_flags->cf_flags & PyCF_ALLOW_TOP_LEVEL_AWAIT) \
DPython-ast.c9644 if (PyModule_AddIntMacro(m, PyCF_ALLOW_TOP_LEVEL_AWAIT) < 0) { in astmodule_exec()