From 464fe3aa7b5700107800d499cfa33e1432e77882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Wed, 13 Jun 2001 17:18:06 +0000 Subject: Temporarily disable the message to stderr. Jeremy will know what to do about this... --- Python/pythonrun.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- cgit v0.12