summaryrefslogtreecommitdiffstats
path: root/Modules/symtablemodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-06-13 00:16:41 (GMT)
committerGitHub <noreply@github.com>2019-06-13 00:16:41 (GMT)
commit37d66d7d4bc7dbac9809d69966a774ebb32563be (patch)
tree510316d9aafcba8dc519e9df877c3f20c7f005f9 /Modules/symtablemodule.c
parent2c9b498759f4fc74da82a0a96d059d666fa73f16 (diff)
downloadcpython-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/symtablemodule.c')
-rw-r--r--Modules/symtablemodule.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/symtablemodule.c b/Modules/symtablemodule.c
index d66cb44..9180f18 100644
--- a/Modules/symtablemodule.c
+++ b/Modules/symtablemodule.c
@@ -30,11 +30,10 @@ _symtable_symtable_impl(PyObject *module, PyObject *source,
struct symtable *st;
PyObject *t;
int start;
- PyCompilerFlags cf;
+ PyCompilerFlags cf = _PyCompilerFlags_INIT;
PyObject *source_copy = NULL;
cf.cf_flags = PyCF_SOURCE_IS_UTF8;
- cf.cf_feature_version = PY_MINOR_VERSION;
const char *str = _Py_SourceAsString(source, "symtable", "string or bytes", &cf, &source_copy);
if (str == NULL) {