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 serhiy.storchaka
Recipients Artoria2e5, benjamin.peterson, eryksun, ezio.melotti, larry, ned.deily, paul.moore, serhiy.storchaka, steve.dower, tim.golden, vstinner, zach.ware
Date 2016-11-16.19:37:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1479325059.13.0.757625139667.issue28712@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks Eryk. Could you please run following script and attach the output?

import codecs
codepages = [424, 856, 857, 864, 869, 874, 932, 949, 950, 1250, 1251, 1252, 1253, 1254, 1255, 1257, 1258]
for cp in codepages:
    table = []
    for i in range(256):
        try:
            c = codecs.code_page_decode(cp, bytes([i]), None, True)
        except Exception:
            c = None
        table.append(c)
    print(cp, ascii(table))
History
Date User Action Args
2016-11-16 19:37:39serhiy.storchakasetrecipients: + serhiy.storchaka, paul.moore, vstinner, larry, tim.golden, benjamin.peterson, ned.deily, ezio.melotti, zach.ware, eryksun, steve.dower, Artoria2e5
2016-11-16 19:37:39serhiy.storchakasetmessageid: <1479325059.13.0.757625139667.issue28712@psf.upfronthosting.co.za>
2016-11-16 19:37:39serhiy.storchakalinkissue28712 messages
2016-11-16 19:37:38serhiy.storchakacreate