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 loewis
Recipients jmfauth, loewis, vstinner
Date 2008-09-29.21:30:26
SpamBayes Score 0.0029349723
Marked as misclassified No
Message-id <48E148F0.90700@v.loewis.de>
In-reply-to <1222682223.58.0.12502846451.issue3995@psf.upfronthosting.co.za>
Content
>>>> unicode('€', 'iso-8859-15')
> u'\x80'
>>>> unicode('€', 'iso-8859-1') #***
> u'\x80'
> 
> It looks like iso-8859-1 behaves as iso-8859-15 (typo somewhere?)

That's correct, and intentional. iso-8850-1 and iso-8859-15 are
*indeed* the same for the respective code points (i.e \x80 and
\x9c).
History
Date User Action Args
2008-09-29 21:30:27loewissetrecipients: + loewis, vstinner, jmfauth
2008-09-29 21:30:26loewislinkissue3995 messages
2008-09-29 21:30:26loewiscreate