Replaced POP() with STACKADJ(-1) on lines where the result wasn't used.
The two are semantically equivalent, but the first triggered a compiler
warning about an unused variable. Note, the preceding steps had already
accessed and decreffed the variable so the reference counts were fine.
diff --git a/Python/ceval.c b/Python/ceval.c
index b23c26a..1fab1cc 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -920,7 +920,7 @@
err = 0;
continue;
}
- POP();
+ STACKADJ(-1);
break;
case UNARY_CONVERT:
@@ -1960,7 +1960,7 @@
SET_TOP(x);
continue;
}
- POP();
+ STACKADJ(-1);
break;
case FOR_ITER: