有没有我可以这样运行的程序:
py2py.py < orig.py > smaller.py
其中 orig.py 包含带有注释和文档字符串的 python 源代码,而 small.py 包含相同的、可运行的源代码但没有注释和文档字符串?
最初看起来像这样的代码:
#/usr/bin/python
"""Do something
blah blah...
"""
# Beware the frubnitz!
def foo(it):
"""Foo it!"""
print it # hmm?
然后看起来像这样:
def foo(it):
print it