]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Temporarily disable the message to stderr. Jeremy will know what to do
authorMarc-André Lemburg <mal@egenix.com>
Wed, 13 Jun 2001 17:18:06 +0000 (17:18 +0000)
committerMarc-André Lemburg <mal@egenix.com>
Wed, 13 Jun 2001 17:18:06 +0000 (17:18 +0000)
about this...

Python/pythonrun.c

index d7b8872b57c2e1c9d8b64258c5e5f16783d1af5b..c67f50e1e6ea5fac9dbb8cf5145c70b3607152d6 100644 (file)
@@ -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;