Dill.detect.children object types
问题 Dill.detect.children requires two arguments; obj and objtype . Inspecting an audiofile object I can call: dill.detect.children(audiofile, object) dill.detect.children(audiofile, dict) dill.detect.children(audiofile, list) Which return without error. But how about looking for instance methods? type(audiofile.save) returns instancemethod Tried dill.detect.children(audiofile, instancemethod) which returns NameError: name 'instancemethod' is not defined Tried dill.detect.children(audiofile,