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>Vernon Cole<br><br>