我正在使用 functools 制作一个装饰器,它允许我记录方法调用的详细信息。
我在这里得到了很多帮助来编写它……它不是我自己的,我仍在学习它是如何工作的……
我经常使用 ipython,当我使用时:
import Tools
imagetools = Tools.Tools()
imagetools.save_new_image ?
Type: instancemethod
String Form:<bound method ImageTools.save_new_image of <ImageTools.ImageTools object at 0x305d1d0>>
File: /fs/corpus6/dpc/workspace/python/Modules/MiscTools.py
Definition: imagetools.save_new_image(self, *args, **kwargs)
Docstring: <no docstring>
这是我的问题线...除了我还没有写文档字符串...:|
Definition: imagetools.save_new_image(self, *args, **kwargs)
我希望是:
save_new_image_clone(self, data, header, outfile, coordmap)
包装:
import functools
def log_method(func):
@functools.wraps(func)
def wrapper(self, *args, **kwargs):
self.__doc__ = func.__doc__
# allows me to put the wrapper in helper methods that are sometimes major steps
if check_for_True_in_last_arg(*args):
log.debug('''Last arg is "True" which could indicate the caller
intends the log to work on this method. For that behaviour, use the keyword arg: log_this=True''')
if 'log_this' in kwargs and kwargs['log_this'] is not False:
args_name = inspect.getargspec(func)[0][1:] #drop the 'self' arg
args_dict = dict(list(itertools_izip(args_name, args)) + list(kwargs.iteritems()))
method_name = wrapper.__name__
args_dict_string = '\nMETHOD: ' + method_name + '\n'
for k,v in args_dict.iteritems():
if type(v) is not np.ndarray:
args_dict_string += "%s: %s\n" %(k,v)
elif type(v) is np.ndarray:
args_dict_string += "NUMPY ARRAY:%s \nSHAPE:%s\n" %(k, str(v.shape))
args_dict_string += '\n'
log.info(args_dict_string)
return func(self, *args, **kwargs)
return wrapper
更新:在 ipython 中我这样做是为了看看发生了什么,但它还没有帮助我..
help??
Type: _Helper
String Form:Type help() for interactive help, or help(object) for help about object.
File: /usr/lib64/python2.7/site.py
Definition: help(self, *args, **kwds)
Source:
class _Helper(object):
"""Define the builtin 'help'.
This is a wrapper around pydoc.help (with a twist).
"""
def __repr__(self):
return "Type help() for interactive help, " \
"or help(object) for help about object."
def __call__(self, *args, **kwds):
import pydoc
return pydoc.help(*args, **kwds)
Call def: help(self, *args, **kwds)