Re: 2to3 inscrutable output

2012-05-28 Thread Steven D'Aprano
On Mon, 28 May 2012 09:18:29 -0700, ru...@yahoo.com wrote: > What is this output from 2to3 supposed to mean? > $ cat mysub.py > isinstance (3, (int,float)) > $ 2to3 -f isinstance mysub.py > RefactoringTool: No changes to mysub.py > RefactoringTool: Files that need to be modified: > R

2to3 inscrutable output

2012-05-28 Thread ru...@yahoo.com
What is this output from 2to3 supposed to mean? $ cat mysub.py isinstance (3, (int,float)) $ 2to3 -f isinstance mysub.py RefactoringTool: No changes to mysub.py RefactoringTool: Files that need to be modified: RefactoringTool: mysub.py Why does mysub.py need to be modified, and how? --