[issue6429] 2to3: fix_future conflicts with fix_print

2009-07-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r73981. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Pytho

[issue6429] 2to3: fix_future conflicts with fix_print

2009-07-09 Thread R. David Murray
R. David Murray added the comment: See also issue 2412, which might or might not have a relevant patch. -- nosy: +r.david.murray ___ Python tracker ___ __

[issue6429] 2to3: fix_future conflicts with fix_print

2009-07-06 Thread Alexandre Vassalotti
New submission from Alexandre Vassalotti : Running 2to3 with the default options on the following code: from __future__ import print_function x,y = 1,2 print(x, y) produces the following diff: --- future_print.py (original) +++ future_print.py (refactored) @@ -1,5 +1,5 @@ -from _