summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2001-06-13 17:18:06 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2001-06-13 17:18:06 (GMT)
commit464fe3aa7b5700107800d499cfa33e1432e77882 (patch)
tree3e3f4baf5ce81d7d4bb5f81c8595c1ea54863e2a /Python/pythonrun.c
parent13a0172658047c027c597ceb87e9941fb246bdc6 (diff)
downloadcpython-464fe3aa7b5700107800d499cfa33e1432e77882.zip
cpython-464fe3aa7b5700107800d499cfa33e1432e77882.tar.gz
cpython-464fe3aa7b5700107800d499cfa33e1432e77882.tar.bz2
Temporarily disable the message to stderr. Jeremy will know what to do
about this...
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;