[Python-bugs-list] [Bug #130077] one-line typo in arraymodule.c

noreply@sourceforge.net noreply@sourceforge.net
Thu, 25 Jan 2001 12:31:32 -0800


Bug #130077, was updated on 2001-Jan-25 12:31
Here is a current snapshot of the bug.

Project: Python
Category: Python Library
Status: Open
Resolution: None
Bug Group: None
Priority: 5
Submitted by: yole
Assigned to : nobody
Summary: one-line typo in arraymodule.c

Details: Line 470 of arraymodule.c in Python-2.1alpha1 reads:

		case Py_LE: cmp = ws <= ws; break;

It should be:

		case Py_LE: cmp = vs <= ws; break;


For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=130077&group_id=5470