gpt4 book ai didi

python - 如何在 Windows 中使用 2to3 工具?

转载 作者:IT老高 更新时间:2023-10-28 22:24:38 34 4
gpt4 key购买 nike

我尝试通过运行命令使用 2to3 工具修改 sintax

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

得到输出

enter image description here

当打开 neo4j.py 时,我注意到没有任何改变。下面是应该进行更改(根据输出)的代码块:

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__)

有谁知道如何正确使用 2to3 工具来将代码移植/更改为 v3.2?

最佳答案

您必须使用 -w 标志来实际编写更改:

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

2to3.py documentation .

关于python - 如何在 Windows 中使用 2to3 工具?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11071037/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com