[Python-checkins] CVS: python/dist/src/Modules parsermodule.c,2.60,2.61

Martin v. L?wis loewis@users.sourceforge.net
Sat, 23 Jun 2001 12:55:40 -0700


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

Modified Files:
	parsermodule.c 
Log Message:
Properly use &&. Closes bug #434989.


Index: parsermodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/parsermodule.c,v
retrieving revision 2.60
retrieving revision 2.61
diff -C2 -r2.60 -r2.61
*** parsermodule.c	2001/01/07 05:59:59	2.60
--- parsermodule.c	2001/06/23 19:55:38	2.61
***************
*** 2525,2529 ****
      node* next = 0;                     /* node to process after this one */
  
!     while (res & (tree != 0)) {
          nch  = NCH(tree);
          next = 0;
--- 2525,2529 ----
      node* next = 0;                     /* node to process after this one */
  
!     while (res && (tree != 0)) {
          nch  = NCH(tree);
          next = 0;