Message174577
On FreeBSD both Serhiy's original test case as well as the unit test work
if the locale is ISO8859-15:
>>> sys.getdefaultencoding()
'utf-8'
>>> sys.getfilesystemencoding()
'iso8859-15'
>>> locale.getpreferredencoding(True)
'ISO8859-15'
>>> locale.getpreferredencoding(False)
'ISO8859-15'
Naturally, if the locale is utf-8 the test works as well. |
|
Date |
User |
Action |
Args |
2012-11-02 21:03:59 | skrah | set | recipients:
+ skrah, jcea, vstinner, tim.golden, jkloth, ezio.melotti, asvetlov, gklein, python-dev, serhiy.storchaka, turncc |
2012-11-02 21:03:59 | skrah | link | issue16218 messages |
2012-11-02 21:03:59 | skrah | create | |
|