Martin v. Löwis <[EMAIL PROTECTED]> added the comment: >>>> 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). ---------- nosy: +loewis title: iso-xxx/cp1252 inconsistencies in Python 2.* not in 3.* -> iso-xxx/cp1252 inconsistencies in Python 2.* not in 3.* _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3995> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com