pr112.py
来自「mallet是自然语言处理、机器学习领域的一个开源项目。」· Python 代码 · 共 15 行
PY
15 行
# test for PR#112 -- functions should not have __module__ attributesdef f(): passif hasattr(f, '__module__'): print 'functions should not have __module__ attributes'# but make sure classes still do have __module__ attributesclass F: passif not hasattr(F, '__module__'): print 'classes should still have __module__ attributes'
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?