From: Raymond Hettinger Date: Wed, 19 Dec 2007 00:27:21 +0000 (+0000) Subject: Zap a duplicate line X-Git-Tag: v2.6a1~830 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eca274367e915022d1c3a1c05787b9c2a7214675;p=thirdparty%2FPython%2Fcpython.git Zap a duplicate line --- diff --git a/Python/compile.c b/Python/compile.c index 36ad8a48e0ec..23047fd8315c 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -2924,7 +2924,6 @@ compiler_visit_expr(struct compiler *c, expr_ty e) 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));