Archive

Posts Tagged ‘Python’

String compatibility between Python implementations

June 18th, 2009 Robert Smallshire 3 comments

Jython and IronPython run on platforms where strings are unicode capable by default. Both implementations have chosen to make str essentially an alias for unicode in Python source code. The bytes type, introduced in PEP358 as part of transition to fully unicode Python 3.0, is unambiguously a sequence of single byte values. We can see [...]

Read the rest of this entry »