]> granicus.if.org Git - python/commit
Replaced POP() with STACKADJ(-1) on lines where the result wasn't used.
authorRaymond Hettinger <python@rcn.com>
Tue, 14 Jan 2003 12:43:10 +0000 (12:43 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 14 Jan 2003 12:43:10 +0000 (12:43 +0000)
commit8bb90a59a641979385f063249143a05a6198725e
tree582e5ee05e36e6775e0859beaaf7c4e4e1b09795
parent2d375f78a570dc627daf61df9d12473633055cdf
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.
Python/ceval.c