[issue11833] ord() doesn't show complete UNICODE
Alec Taylor added the comment: Python 2.7.1, Win7 64-bit -- ___ Python tracker <http://bugs.python.org/issue11833> ___ ___ Python-bugs-list mailing list Unsub
[issue11833] ord() doesn't show complete UNICODE
New submission from Alec Taylor : Unfortunately ord() doesn't show complete UNICODE. This can cause incorrectness problems. >>> ord('—') 151 >>> ord('¥') 165 Proof: Type Alt+0151, then type Alt+151. They should give you — and ù respectively. Pl