I was hunting down a bug in my code today and found something particularly worrying. In python:
wim@wim-acer:~$ python
Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53)
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> x = u'$€%'
>>> x.find('%')
2
>>> len(x)
3
Whereas in ipython:
[~/repo/py]
|3>x = u'$€%'
[~/repo/py]
|4>x.find('%')
[4] 4
[~/repo/py]
|5>len(x)
[5] 5
Could anyone enlighten me as to what's going on here?
edit: with some additional info requested from the comments below:
ipython
[~/repo/py]
|53>import sys, locale
[~/repo/py]
|54>reload(sys)
<module 'sys' (built-in)>
[~/repo/py]
|55>sys.setdefaultencoding(locale.getdefaultlocale()[1])
[~/repo/py]
|56>sys.getdefaultencoding()
'UTF8'
[~/repo/py]
|57>x = u'$€%'
[~/repo/py]
|58>x
u'$\xe2\x82\xac%'
[~/repo/py]
|59>print x
$â¬%
[~/repo/py]
|60>len(x)
5
python
>>> import sys, locale
>>> reload(sys)
<module 'sys' (built-in)>
>>> sys.setdefaultencoding(locale.getdefaultlocale()[1])
>>> sys.getdefaultencoding()
'UTF8'
>>> x = u'$€%'
>>> x
u'$\u20ac%'
>>> print x
$€%
>>> len(x)
3

x <Enter>on the command line in CPython? What character encodings are your shells using? – Tim Pietzcker Sep 29 '11 at 6:53print xgives$€%, whereas justxgivesu'$\u20ac%'– wim Sep 29 '11 at 6:57