所有内容未经说明都是原创。注明出处后欢迎转载。
def test(func, *args, **kargs): if not callable(func): raise RuntimeError, str(func) + ' not a callable object' else: func(*args, **kargs)
Post a Comment
No comments:
Post a Comment