[Python-checkins] r59561 - python/trunk/Python/compile.c

raymond.hettinger python-checkins at python.org
Wed Dec 19 01:27:21 CET 2007


Author: raymond.hettinger
Date: Wed Dec 19 01:27:21 2007
New Revision: 59561

Modified:
   python/trunk/Python/compile.c
Log:
Zap a duplicate line

Modified: python/trunk/Python/compile.c
==============================================================================
--- python/trunk/Python/compile.c	(original)
+++ python/trunk/Python/compile.c	Wed Dec 19 01:27:21 2007
@@ -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));


More information about the Python-checkins mailing list