<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>



Hi All,<BR>&nbsp;<BR>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<BR>&nbsp;<BR>&gt;&gt;&gt; type(u"A")<br>&lt;type 'unicode'&gt;<br>&gt;&gt;&gt; type("A")<br>&lt;type 'str'&gt;<BR>&nbsp;<BR>On Ironpython the latest 2.7.2 Alpha 1 I get the following<BR>&nbsp;<BR>&gt;&gt;&gt; type(u"A")<br>&lt;type 'str'&gt;<br>&gt;&gt;&gt; type("A")<br>&lt;type 'str'&gt;<BR>&nbsp;<BR>&nbsp;<BR>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.<BR>&nbsp;<BR>Thanks<BR>&nbsp;<BR>Danny<BR>                                               </div></body>
</html>