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

noreply@sourceforge.net noreply@sourceforge.net
Fri, 26 Jan 2001 07:21:52 -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: Closed
Resolution: Fixed
Bug Group: None
Priority: 5
Submitted by: yole
Assigned to : gvanrossum
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;


Follow-Ups:

Date: 2001-Jan-26 07:21
By: fdrake

Comment:
Guido already checked in the fix in Modules/arraymodule.c revision 2.62.
-------------------------------------------------------

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