These sound good.&nbsp; Can you file them on CodePlex, please?<br><br>
<div class="gmail_quote">On Thu, Nov 13, 2008 at 3:32 AM, Vernon Cole <span dir="ltr">&lt;<a href="mailto:vernondcole@gmail.com">vernondcole@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Some time back contributors to this forum were invited to suggest which Python3k and Python 2.6 functions were most important to implement in the next IronPython.<br>
<br>I downloaded Python 2.6 and Python3.0RC2 today and started hacking at making adodbapi work in Python 3.&nbsp; (Now that it works in Iron, py3k seems like the next logical thing.)&nbsp; Conversion to Python2.6 is the first baby step.&nbsp; Roger Upole has already done some of the work, so I picked up his branch off CVS. <br>
<br>I quickly discovered that the first thing I need for each module is to add:<br><br>from __future__ import print_function<br>from __future__ import unicode_literals<br><br>This makes IronPython immediatly error out, of course.<br>
<br>The unicode_literals would be a simple &quot;pass&quot; statement for IronPython, which already defaults that way. <br>The convertion of &quot;print&quot; from a statement to a function affects every Python program down to &quot;Hello, World&quot;. IMHO it would be the most important thing to implement.<br>
--<br><font color="#888888">Vernon Cole<br><br></font><br>_______________________________________________<br>Users mailing list<br><a href="mailto:Users@lists.ironpython.com">Users@lists.ironpython.com</a><br><a href="http://lists.ironpython.com/listinfo.cgi/users-ironpython.com" target="_blank">http://lists.ironpython.com/listinfo.cgi/users-ironpython.com</a><br>
<br></blockquote></div><br>