From: Marc-André Lemburg Date: Wed, 13 Jun 2001 17:18:06 +0000 (+0000) Subject: Temporarily disable the message to stderr. Jeremy will know what to do X-Git-Tag: v2.2a3~1562 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=464fe3aa7b5700107800d499cfa33e1432e77882;p=thirdparty%2FPython%2Fcpython.git Temporarily disable the message to stderr. Jeremy will know what to do about this... --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index d7b8872b57c2..c67f50e1e6ea 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;