How to use 2to3 tool in windows?

三世轮回 提交于 2019-12-17 23:47:13

问题


I tried to modify the sintax using 2to3 tool by running command

python C:\Python32\Tools\scripts\2to3.py neo4j.py

and got the output

When opening neo4j.py however I noticed there hasn't been anything changed. Below is the block of code where changes (accoridng to output) should be made:

try:
    import json
except ImportError:
    import simplejson as json
try:
    from urllib.parse import quote
except ImportError:
    from urllib import quote
try:
    from . import rest, batch, cypher
except ImportError:
    import rest, batch, cypher
except ValueError:
    import rest, batch, cypher

import logging
logger = logging.getLogger(__name__)

Does anyone know how to use 2to3 tool properly in order to port/change the code to v3.2?


回答1:


You have to use the -w flag to actually write the changes:

python C:\Python32\Tools\scripts\2to3.py -w neo4j.py

See the 2to3.py documentation.




回答2:


As an addition to the accepted answer,

Copy this line to C:\python32\Scripts\2to3.bat:

@python %~dp0..\tools\scripts\2to3.py %*

After that you'll be able to use

2to3 -w neo4j.py


来源:https://stackoverflow.com/questions/11071037/how-to-use-2to3-tool-in-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!