From: Thomas Wouters Date: Sun, 27 Aug 2000 19:01:33 +0000 (+0000) Subject: Oops, one pop too many. X-Git-Tag: v2.0b1~205 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ae722e0a21e7fff58e94f6b62b6340761312f7e;p=thirdparty%2FPython%2Fcpython.git Oops, one pop too many. --- diff --git a/Python/compile.c b/Python/compile.c index 0bfae149941b..e8462c653961 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);