Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 464fe3a

Browse files
committed
Temporarily disable the message to stderr. Jeremy will know what to do
about this...
1 parent 13a0172 commit 464fe3a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Python/pythonrun.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,8 +1076,10 @@ run_pyc_file(FILE *fp, char *filename, PyObject *globals, PyObject *locals,
10761076
if (v && flags) {
10771077
if (co->co_flags & CO_NESTED)
10781078
flags->cf_nested_scopes = 1;
1079+
#if 0
10791080
fprintf(stderr, "run_pyc_file: nested_scopes: %d\n",
1080-
flags->cf_nested_scopes);
1081+
flags->cf_nested_scopes);
1082+
#endif
10811083
}
10821084
Py_DECREF(co);
10831085
return v;

0 commit comments

Comments
 (0)