This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients Arfrever, barry, ezio.melotti, jhalcrow, lemburg, loewis, pitrou, valhallasw, vstinner
Date 2010-12-15.22:18:29
SpamBayes Score 0.0034714113
Marked as misclassified No
Message-id <1292451511.31.0.0377666435586.issue10254@psf.upfronthosting.co.za>
In-reply-to
Content
After a bit of debugging, the crash is due to the "skipped" array being overflowed in nfc_nfkc() in unicodedata.c. "cskipped" goes up to 21 while the array only has 20 entries. This happens in all branches (but only crashes in 2.7 right now for probably unimportant reasons).

And the problem was indeed introduced by Victor's patch in issue1054943. Just before, "cskipped" would only go up to 1.
History
Date User Action Args
2010-12-15 22:18:31pitrousetrecipients: + pitrou, lemburg, loewis, barry, vstinner, ezio.melotti, Arfrever, jhalcrow, valhallasw
2010-12-15 22:18:31pitrousetmessageid: <1292451511.31.0.0377666435586.issue10254@psf.upfronthosting.co.za>
2010-12-15 22:18:30pitroulinkissue10254 messages
2010-12-15 22:18:29pitroucreate