gpt4 book ai didi

python - 哪些 2to3 修复程序输出有效的 Python 2 代码?

转载 作者:太空狗 更新时间:2023-10-30 00:17:19 24 4
gpt4 key购买 nike

2to3 is a Python program that reads Python 2.x source code and applies a series of fixers to transform it into valid Python 3.x code

考虑 https://docs.python.org/3/library/2to3.html#fixers 中列出的四十个修复程序.按照设计,它们都输出有效的 Python 3 代码。哪个输出有效的 Python 2 代码?

例如,“将旧的不等于语法 <> 转换为 != ”的固定器 NE 具有此属性,因为 !=是有效的 Python 2 和 Python 3。

而“将 __nonzero__ 重命名为 __bool__ ”的固定器 NONZERO 没有属性,因为没有函数 __bool__在 Python 2.7 中。

最佳答案

来自 What's New In Python 3.0 :

It is not recommended to try to write source code that runs unchanged under both Python 2.6 and 3.0; you’d have to use a very contorted coding style, e.g. avoiding print statements, metaclasses, and much more. If you are maintaining a library that needs to support both Python 2.6 and Python 3.0, the best approach is to modify step 3 above by editing the 2.6 version of the source code and running the 2to3 translator again, rather than editing the 3.0 version of the source code.

那里的链接非常好,因为它还列出了 3.0 中的大部分主要新功能和更改

至于你的问题,我能找到的最接近你要求的是 Six ,它不是转换器或修复器,而是一个兼容性库,可以为您处理大量扭曲的编码。也就是说,我不知道它的效果如何,无论如何都需要对现有代码进行大量更改才能利用它。

主要问题是 Python 3.x 改变了语法的许多基本方面,如果没有某种兼容层,相同的代码几乎不可能在 3.x 和 2.x 上以相同的方式工作。 Python 2 的字符串与 Python 3 的字符串不同。整数也是如此,Python 3 甚至不再有 long 类型(Python 3 int 是 long 过去的样子,旧的 Python 2 int 已经消失了)。许多内置函数和属性已重命名或修改,并且大部分语法已以完全破坏向后兼容性的方式更改或清理。

Porting code to Python 3 with 2to3解释了一些关于 2to3 及其作用的内容,列出的大量语法更改应该足以解释为什么生成的代码不再适用于 Python 2.x。

关于python - 哪些 2to3 修复程序输出有效的 Python 2 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26223761/

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