I assume you are having me do this because you still plan to cut separate releases. Is there a minimum Python version that needs to be supported?<br><br><div class="gmail_quote">On Tue, Feb 22, 2011 at 18:23, Benjamin Peterson <span dir="ltr">&lt;<a href="mailto:benjamin@python.org">benjamin@python.org</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">2011/2/22 brett.cannon &lt;<a href="mailto:python-checkins@python.org">python-checkins@python.org</a>&gt;:<br>
<div class="im">&gt; Author: brett.cannon<br>
&gt; Date: Tue Feb 22 20:12:43 2011<br>
&gt; New Revision: 88503<br>
&gt;<br>
&gt; Log:<br>
&gt; Add lib2to3.__main__ to make it easier for debugging purposes to run 2to3.<br>
<br>
</div>Please revert this and do it in the sandbox.<br>
<div class="im"><br>
&gt;<br>
&gt; Added:<br>
&gt;   python/branches/py3k/Lib/lib2to3/__main__.py<br>
&gt; Modified:<br>
&gt;   python/branches/py3k/Tools/scripts/2to3<br>
&gt;<br>
&gt; Added: python/branches/py3k/Lib/lib2to3/__main__.py<br>
&gt; ==============================================================================<br>
&gt; --- (empty file)<br>
&gt; +++ python/branches/py3k/Lib/lib2to3/__main__.py        Tue Feb 22 20:12:43 2011<br>
&gt; @@ -0,0 +1,4 @@<br>
&gt; +import sys<br>
&gt; +from .main import main<br>
&gt; +<br>
&gt; +sys.exit(main(&quot;lib2to3.fixes&quot;))<br>
&gt;<br>
&gt; Modified: python/branches/py3k/Tools/scripts/2to3<br>
&gt; ==============================================================================<br>
&gt; --- python/branches/py3k/Tools/scripts/2to3     (original)<br>
&gt; +++ python/branches/py3k/Tools/scripts/2to3     Tue Feb 22 20:12:43 2011<br>
&gt; @@ -1,5 +1,4 @@<br>
&gt;  #!/usr/bin/env python<br>
&gt; -import sys<br>
&gt; -from lib2to3.main import main<br>
&gt; +import runpy<br>
&gt;<br>
&gt; -sys.exit(main(&quot;lib2to3.fixes&quot;))<br>
&gt; +runpy.run_module(&#39;lib2to3&#39;, run_name=&#39;__main__&#39;, alter_sys=True)<br>
&gt; _______________________________________________<br>
&gt; Python-checkins mailing list<br>
&gt; <a href="mailto:Python-checkins@python.org">Python-checkins@python.org</a><br>
&gt; <a href="http://mail.python.org/mailman/listinfo/python-checkins" target="_blank">http://mail.python.org/mailman/listinfo/python-checkins</a><br>
&gt;<br>
<br>
<br>
<br>
</div>--<br>
Regards,<br>
<font color="#888888">Benjamin<br>
</font><div><div></div><div class="h5">_______________________________________________<br>
Python-checkins mailing list<br>
<a href="mailto:Python-checkins@python.org">Python-checkins@python.org</a><br>
<a href="http://mail.python.org/mailman/listinfo/python-checkins" target="_blank">http://mail.python.org/mailman/listinfo/python-checkins</a><br>
</div></div></blockquote></div><br>