Bugs item #1753395, was opened at 2007-07-13 07:35 Message generated for change (Comment added) made by gvanrossum You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1753395&group_id=5470
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: Python 3000 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Thomas Heller (theller) >Assigned to: Martin v. Löwis (loewis) Summary: struni: assertion in Windows debug build Initial Comment: When running Lib/test/test_descr.py with a Windows debug build, I get an assertion in the MS runtime lib, in the isalpha(*p) call, file typeobject.c, line 1582. The value of '*p' at the time of the call is 4660. The assertion reported is: File: istype.c Line: 68 Expression; (unsigned)(c + 1) <= 256 ---------------------------------------------------------------------- >Comment By: Guido van Rossum (gvanrossum) Date: 2007-08-04 12:44 Message: Logged In: YES user_id=6380 Originator: NO I've committed the *p > 127 patch. Committed revision 56737. However, we'll need to change this again now that we accept Unicode identifiers. Assigning to MvL. ---------------------------------------------------------------------- Comment By: Walter Dörwald (doerwalter) Date: 2007-08-04 03:42 Message: Logged In: YES user_id=89016 Originator: NO Right, this should have been *p > 255, even better would be *p > 127. Thomas, can you try that on Windows? ---------------------------------------------------------------------- Comment By: Guido van Rossum (gvanrossum) Date: 2007-08-03 16:37 Message: Logged In: YES user_id=6380 Originator: NO I wonder if the test "i > 255" wasn't meant to be "*p > 255"? Please try that, and submit if it works. Looks like Walter Doerwald introduced this bug in r55892. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1753395&group_id=5470 _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com