[Python-checkins] python/dist/src/Python ast.c,2.1,2.2

nnorwitz@users.sourceforge.net nnorwitz at users.sourceforge.net
Fri Oct 21 07:15:10 CEST 2005


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

Modified Files:
	ast.c 
Log Message:
Oops, "=" is not a comparison operator

Index: ast.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ast.c,v
retrieving revision 2.1
retrieving revision 2.2
diff -u -d -r2.1 -r2.2
--- ast.c	20 Oct 2005 19:59:25 -0000	2.1
+++ ast.c	21 Oct 2005 05:15:07 -0000	2.2
@@ -471,7 +471,6 @@
             case GREATER:
                 return Gt;
             case EQEQUAL:			/* == */
-            case EQUAL:
                 return Eq;
             case LESSEQUAL:
                 return LtE;



More information about the Python-checkins mailing list