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

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 25 Jan 2001 14:12:45 -0800


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

Modified Files:
	arraymodule.c 
Log Message:
Correct one-line typo, reported by yole @ SF, bug 130077.


Index: arraymodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/arraymodule.c,v
retrieving revision 2.61
retrieving revision 2.62
diff -C2 -r2.61 -r2.62
*** arraymodule.c	2001/01/24 21:44:21	2.61
--- arraymodule.c	2001/01/25 22:12:43	2.62
***************
*** 468,472 ****
  		switch (op) {
  		case Py_LT: cmp = vs <  ws; break;
! 		case Py_LE: cmp = ws <= ws; break;
  		case Py_EQ: cmp = vs == ws; break;
  		case Py_NE: cmp = vs != ws; break;
--- 468,472 ----
  		switch (op) {
  		case Py_LT: cmp = vs <  ws; break;
! 		case Py_LE: cmp = vs <= ws; break;
  		case Py_EQ: cmp = vs == ws; break;
  		case Py_NE: cmp = vs != ws; break;