[Python-checkins] r73308 - python/trunk/Python/ast.c

benjamin.peterson python-checkins at python.org
Tue Jun 9 00:18:32 CEST 2009


Author: benjamin.peterson
Date: Tue Jun  9 00:18:32 2009
New Revision: 73308

Log:
remove useless assertion

Modified:
   python/trunk/Python/ast.c

Modified: python/trunk/Python/ast.c
==============================================================================
--- python/trunk/Python/ast.c	(original)
+++ python/trunk/Python/ast.c	Tue Jun  9 00:18:32 2009
@@ -3130,7 +3130,6 @@
         n = CHILD(n, 0);
     }
     if (TYPE(n) == small_stmt) {
-        REQ(n, small_stmt);
         n = CHILD(n, 0);
         /* small_stmt: expr_stmt | print_stmt  | del_stmt | pass_stmt
                      | flow_stmt | import_stmt | global_stmt | exec_stmt


More information about the Python-checkins mailing list