commit | eca274367e915022d1c3a1c05787b9c2a7214675 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Wed Dec 19 00:27:21 2007 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Wed Dec 19 00:27:21 2007 +0000 |
tree | fa5c04ec7a2320387065689648472d624a7dcbc2 | |
parent | 3b63556d4afcc358cfc8cec3ff189de519ecfb56 [diff] |
Zap a duplicate line
diff --git a/Python/compile.c b/Python/compile.c index 36ad8a4..23047fd 100644 --- a/Python/compile.c +++ b/Python/compile.c
@@ -2924,7 +2924,6 @@ case Dict_kind: n = asdl_seq_LEN(e->v.Dict.values); ADDOP_I(c, BUILD_MAP, (n>255 ? 255 : n)); - n = asdl_seq_LEN(e->v.Dict.values); for (i = 0; i < n; i++) { VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i));