摘要:
Python traceback 模块,追踪错误 import traceback try: your code except: traceback.print_exc() 阅读全文
摘要:
python inspect 模块 和 types 模块 判断是否是方法,模块,函数等内置特殊属性 inspect import inspect def fun(): pass inspect.ismodule(fun) inspect.isclass(fun) inspect.ismethod(f 阅读全文