summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-08-27 19:01:33 (GMT)
committerThomas Wouters <thomas@python.org>2000-08-27 19:01:33 (GMT)
commit0ae722e0a21e7fff58e94f6b62b6340761312f7e (patch)
tree45604361b51aa08dbe00199ae58127ce8b34f2a6
parentfee3a2dd8cf984b8261032086fe513bf7327b601 (diff)
downloadcpython-0ae722e0a21e7fff58e94f6b62b6340761312f7e.zip
cpython-0ae722e0a21e7fff58e94f6b62b6340761312f7e.tar.gz
cpython-0ae722e0a21e7fff58e94f6b62b6340761312f7e.tar.bz2
Oops, one pop too many.
-rw-r--r--Python/compile.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 0bfae14..e8462c6 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -1916,7 +1916,6 @@ com_augassign_attr(struct compiling *c, node *n, int opcode, node *augn)
com_addbyte(c, DUP_TOP);
com_push(c, 1);
com_addopname(c, LOAD_ATTR, n);
- com_pop(c, 1);
com_node(c, augn);
com_addbyte(c, opcode);
com_pop(c, 1);