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 vstinner
Recipients benjamin.peterson, brett.cannon, loewis, vstinner
Date 2008-10-04.00:19:38
SpamBayes Score 4.157326e-06
Marked as misclassified No
Message-id <1223079579.69.0.656098034704.issue3574@psf.upfronthosting.co.za>
In-reply-to
Content
Using py3k trunk + fix_latin.diff:
 - compile(b'# coding: latin-1\nu = "\xC7"\n', '<dummy>', 'exec') 
doesn't fail
 - test_pep3120.py is ok
 - but execute a ISO-8859-1 script fails: see attached iso.py

Original Python3:
$ python iso.py
'Bonjour ma ch\xe8re amie'

Patched Python3:
$ python iso.py
'Bonjour ma ch\xc3\xa8re amie'
History
Date User Action Args
2008-10-04 00:19:39vstinnersetrecipients: + vstinner, loewis, brett.cannon, benjamin.peterson
2008-10-04 00:19:39vstinnersetmessageid: <1223079579.69.0.656098034704.issue3574@psf.upfronthosting.co.za>
2008-10-04 00:19:39vstinnerlinkissue3574 messages
2008-10-04 00:19:38vstinnercreate