diff options
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c index 422a2af..afe330b 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -490,10 +490,10 @@ com_pop(c, n) int n; { if (c->c_stacklevel < n) { - fprintf(stderr, + /* fprintf(stderr, "%s:%d: underflow! nexti=%d, level=%d, n=%d\n", c->c_filename, c->c_lineno, - c->c_nexti, c->c_stacklevel, n); + c->c_nexti, c->c_stacklevel, n); */ c->c_stacklevel = 0; } else |