有没有类似于 Pylint 的东西,它会查看 Python 脚本(或运行它),并确定每行(或函数)需要哪个版本的 Python?
例如,理论用法:
$ magic_tool <EOF
with something:
pass
EOF
1: 'with' statement requires Python 2.6 or greater
$ magic_tool <EOF
class Something:
@classmethod
def blah(cls):
pass
EOF
2: classmethod requires Python 2.2 or greater
$ magic_tool <EOF
print """Test
"""
EOF
1: Triple-quote requires Python 1.5 of later
这样的事情可能吗?我想最简单的方法是将所有 Python 版本放在光盘上,对每个版本运行脚本,看看会发生什么错误。