[Python-checkins] python/dist/src/Python symtable.c, 2.10.8.34, 2.10.8.35

nascheme@users.sourceforge.net nascheme at users.sourceforge.net
Wed Aug 31 02:25:34 CEST 2005


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32155/Python

Modified Files:
      Tag: ast-branch
	symtable.c 
Log Message:
Don't abort generation of the symtable after issuing a warning about 
a global declaration.


Index: symtable.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/symtable.c,v
retrieving revision 2.10.8.34
retrieving revision 2.10.8.35
diff -u -d -r2.10.8.34 -r2.10.8.35
--- symtable.c	11 Jul 2005 03:52:47 -0000	2.10.8.34
+++ symtable.c	31 Aug 2005 00:25:23 -0000	2.10.8.35
@@ -904,7 +904,6 @@
 						      GLOBAL_AFTER_USE,
 						      c_name);
 				symtable_warn(st, buf);
-				return 0;
 			}
 			if (!symtable_add_def(st, name, DEF_GLOBAL))
 				return 0;



More information about the Python-checkins mailing list