Home
last modified time | relevance | path

Searched refs:cf_feature_version (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Include/
Dcompile.h39 int cf_feature_version; /* minor Python version (PyCF_ONLY_AST) */ member
43 (PyCompilerFlags){.cf_flags = 0, .cf_feature_version = PY_MINOR_VERSION}
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst407 .. c:member:: int cf_feature_version
409 *cf_feature_version* is the minor Python version. It should be
416 Added *cf_feature_version* field.
/external/python/cpython3/Modules/
Dparsermodule.c585 ((PyST_Object *)res)->st_flags.cf_feature_version = PY_MINOR_VERSION; in parser_do_parse()
/external/python/cpython3/Misc/NEWS.d/
D3.9.0b4.rst100 Stefan Behnel reported that cf_feature_version is used even when
/external/python/cpython3/Parser/pegen/
Dpegen.c1048 if ((flags->cf_flags & PyCF_ONLY_AST) && flags->cf_feature_version < 7) { in compute_parser_flags()
1243 flags->cf_feature_version : PY_MINOR_VERSION; in _PyPegen_run_parser_from_string()
/external/python/cpython3/Python/
Dpythonrun.c1405 if (flags && (flags->cf_flags & PyCF_ONLY_AST) && flags->cf_feature_version < 7) in PyParser_ASTFromStringObject()
Dbltinmodule.c738 cf.cf_feature_version = feature_version; in builtin_compile_impl()
Dast.c781 flags->cf_feature_version : PY_MINOR_VERSION; in PyAST_FromNodeObject()
/external/python/cpython3/Doc/whatsnew/
D3.8.rst2010 * The :c:type:`PyCompilerFlags` structure got a new *cf_feature_version*