summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index d7b8872..c67f50e 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -1076,8 +1076,10 @@ run_pyc_file(FILE *fp, char *filename, PyObject *globals, PyObject *locals,
if (v && flags) {
if (co->co_flags & CO_NESTED)
flags->cf_nested_scopes = 1;
+#if 0
fprintf(stderr, "run_pyc_file: nested_scopes: %d\n",
- flags->cf_nested_scopes);
+ flags->cf_nested_scopes);
+#endif
}
Py_DECREF(co);
return v;