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 John Helour
Recipients John Helour, lemburg, loewis, mdk, serhiy.storchaka, vstinner, xiang.zhang
Date 2016-11-25.22:35:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480113321.98.0.956592761263.issue24339@psf.upfronthosting.co.za>
In-reply-to
Content
@mdk

Big thanks for the checker.

>Looks like your implementation is missing some codepoints, like "\t":
>
>    >>> >print("\t".encode(encoding='iso6937'))                                                    
>    [...]
>    UnicodeError: encoding with 'iso6937' codec failed (UnicodeError: Unacceptable utf-8 character)

The '\t'  character is undefined in the iso6937 table, like all chars within the range 0x00 - 0x1F. I don't know how to handle such input for conversion.
History
Date User Action Args
2016-11-25 22:35:22John Heloursetrecipients: + John Helour, lemburg, loewis, vstinner, serhiy.storchaka, xiang.zhang, mdk
2016-11-25 22:35:21John Heloursetmessageid: <1480113321.98.0.956592761263.issue24339@psf.upfronthosting.co.za>
2016-11-25 22:35:21John Helourlinkissue24339 messages
2016-11-25 22:35:21John Helourcreate