Hi All, I was just playing with unicode strings and I notice a difference with
CPython and IronPython. On CPython 2.7.2 I get the following >>> type(u"A")
<type 'unicode'>
>>> type("A")
<type 'str'> On Ironpython the latest 2.7.2 Alpha 1 I get the following >>>
type(u"A")
<type 'str'>
>>> type("A")
<type 'str'> I decided to crack open the source and see where this type
function is defined. I followed to the builtin.cs with the PythonModule but I
got kind lost there. If anyone can provide some helpful hints that would be
great. Thanks Danny _______________________________________________
Ironpython-users mailing list
[email protected]
http://mail.python.org/mailman/listinfo/ironpython-users