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 lemburg
Recipients belopolsky, ezio.melotti, lemburg, loewis
Date 2010-11-29.18:21:55
SpamBayes Score 0.00038911446
Marked as misclassified No
Message-id <4CF3EF41.5090808@egenix.com>
In-reply-to <1291049866.52.0.365729452675.issue10552@psf.upfronthosting.co.za>
Content
gencodec.py is only rarely used, namely when adding new codecs based
on Unicode mapping files.

It is not run regularly on the files from ftp.unicode.org and only
updated on demand.

AFAIK, it was last used on Python2 and never on Python3, hence the
errors you find with it.

BTW: You appear to have a comma appended to the constant, that doesn't
belong there:

+# Placeholder for a missing codepoint
+MISSING_CODE = -1,
+

Perhaps that's causing the second error you are seeing.
History
Date User Action Args
2010-11-29 18:21:57lemburgsetrecipients: + lemburg, loewis, belopolsky, ezio.melotti
2010-11-29 18:21:55lemburglinkissue10552 messages
2010-11-29 18:21:55lemburgcreate