add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,34 +1,34 @@
# 2to3
> 自动 Python 2 代码转换成 Python 3.
> 自 3.11 起,该模块已被弃用,并自 3.13 起被移除。
> 参考请见<https://github.com/python/cpython/blob/8d42e2d915c3096e7eac1c649751d1da567bb7c3/Doc/whatsnew/3.13.rst?plain=1#L188>.
> 更多信息:<https://manned.org/2to3>.
> 自动 Python 2 到 3 的代码转换。
> 此模块自 3.11 版本起已被弃用,并自 3.13 版本起被移除。
> 参考链接<https://github.com/python/cpython/blob/8d42e2d915c3096e7eac1c649751d1da567bb7c3/Doc/whatsnew/3.13.rst?plain=1#L188>
> 更多信息:<https://manned.org/2to3>
- 显示将执行的变动但不执行dry-run
- 显示将执行的更改,而不执行它们(干运行
`2to3 {{路径/到/文件.py}}`
`2to3 {{path/to/file.py}}`
- 将 Python 2 文件转为 Python 3
- 将 Python 2 文件转为 Python 3
`2to3 --write {{路径/到/文件.py}}`
`2to3 --write {{path/to/file.py}}`
- 将 Python 2 语言特性转为 Python 3
-特定的 Python 2 语言特性转为 Python 3
`2to3 --write {{路径/到/文件.py}} --fix {{raw_input}} --fix {{print}}`
`2to3 --write {{path/to/file.py}} --fix {{raw_input}} --fix {{print}}`
- 除了某个语言特性外将所有其他的 Python 2 语言特性转为 Python 3
- 将所有 Python 2 语言特性转为 Python 3,除了指定的特性
`2to3 --write {{路径/到/文件.py}} --nofix {{has_key}} --nofix {{isinstance}}`
`2to3 --write {{path/to/file.py}} --nofix {{has_key}} --nofix {{isinstance}}`
- 列出 Python 2 所有可转化为 Python 3 的语言特性:
- 列出所有可以从 Python 2 转换为 Python 3 的可用语言特性:
`2to3 --list-fixes`
-某一文件夹的所有 Python 2 文件转为 Python 3
-目录中的所有 Python 2 文件转为 Python 3
`2to3 --output-dir {{路径/到/Python 3 目录}} --write-unchanged-files --nobackups {{路径/到/Python 2 目录}}`
`2to3 --output-dir {{path/to/python3_directory}} --write-unchanged-files --nobackups {{path/to/python2_directory}}`
- 使用多线程运行 2to3
- 使用多线程运行 2to3
`2to3 --processes {{4}} --output-dir {{路径/到/Python 3 目录}} --write --nobackups --no-diff {{路径/到/Python 2 目录}}`
`2to3 --processes {{4}} --output-dir {{path/to/python3_directory}} --write --nobackups --no-diff {{path/to/python2_directory}}`