Kaydet (Commit) 90f827c6 authored tarafından Guido van Rossum's avatar Guido van Rossum

Comment out the print statement about underflow. (This only seems to

happen when you use a non-keyword argument after a keyword argument,
and in this case you also get a syntax error.  I fully suspect that
the underflow is caused by the code that stops generating code when it
detects the syntax error, but I can't find the culprit right now.  I
know, I know.)
üst 2d1ad39b
...@@ -490,10 +490,10 @@ com_pop(c, n) ...@@ -490,10 +490,10 @@ com_pop(c, n)
int n; int n;
{ {
if (c->c_stacklevel < n) { if (c->c_stacklevel < n) {
fprintf(stderr, /* fprintf(stderr,
"%s:%d: underflow! nexti=%d, level=%d, n=%d\n", "%s:%d: underflow! nexti=%d, level=%d, n=%d\n",
c->c_filename, c->c_lineno, c->c_filename, c->c_lineno,
c->c_nexti, c->c_stacklevel, n); c->c_nexti, c->c_stacklevel, n); */
c->c_stacklevel = 0; c->c_stacklevel = 0;
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment