Dill.detect.children
需要两个参数;obj
和objtype
。
检查我可以调用的音频文件对象:
dill.detect.children(audiofile, object)
dill.detect.children(audiofile, dict)
dill.detect.children(audiofile, list)
哪个返回没有错误。
但是如何寻找实例方法呢?
type(audiofile.save)
返回
instancemethod
试过了
dill.detect.children(audiofile, instancemethod)
返回
NameError: name 'instancemethod' is not defined
试过了
dill.detect.children(audiofile, 'instancemethod')
返回
TypeError: isinstance() arg 2 must be a class, type, or tuple of classes and types
这不应该返回与调用类似的结果dir(audiofile)
吗?