When I run 2to3.py -w my_script.py
it converts my_script.py
to Python3 and then puts the original version my_script.py.bak
.
I want the old file to remain as is, and the converted file to go into a new file, like my_script.converted.py
. Is there a 2to3.py
argument that allows this?