[Python-checkins] python/dist/src/Modules parsermodule.c,2.77,2.78

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Sun, 09 Feb 2003 17:08:52 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1:/tmp/cvs-serv28248/Modules

Modified Files:
	parsermodule.c 
Log Message:
Remove duplicate code introduced by fixing bug #678518



Index: parsermodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/parsermodule.c,v
retrieving revision 2.77
retrieving revision 2.78
diff -C2 -d -r2.77 -r2.78
*** parsermodule.c	9 Feb 2003 17:19:18 -0000	2.77
--- parsermodule.c	10 Feb 2003 01:08:50 -0000	2.78
***************
*** 1720,1726 ****
          err_string("illegal global statement");
  
-     if (!res && !PyErr_Occurred())
-         err_string("illegal global statement");
- 
      if (res)
          res = (validate_name(CHILD(tree, 0), "global")
--- 1720,1723 ----