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