diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-13 00:16:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-13 00:16:41 (GMT) |
commit | 37d66d7d4bc7dbac9809d69966a774ebb32563be (patch) | |
tree | 510316d9aafcba8dc519e9df877c3f20c7f005f9 /Modules/parsermodule.c | |
parent | 2c9b498759f4fc74da82a0a96d059d666fa73f16 (diff) | |
download | cpython-37d66d7d4bc7dbac9809d69966a774ebb32563be.zip cpython-37d66d7d4bc7dbac9809d69966a774ebb32563be.tar.gz cpython-37d66d7d4bc7dbac9809d69966a774ebb32563be.tar.bz2 |
bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)
Add a new _PyCompilerFlags_INIT macro to initialize PyCompilerFlags
variables, rather than initializing cf_flags and cf_feature_version
explicitly in each variable.
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r-- | Modules/parsermodule.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 36f9214..079d00f 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -336,8 +336,7 @@ parser_newstobject(node *st, int type) if (o != 0) { o->st_node = st; o->st_type = type; - o->st_flags.cf_flags = 0; - o->st_flags.cf_feature_version = PY_MINOR_VERSION; + o->st_flags = _PyCompilerFlags_INIT; } else { PyNode_Free(st); |