Ok I know you can use the dir() method to list everything in a module, but is there any way to see only the functions that are defined in that module? For example, assume m
You can check __module__ attribute of the function in question. I say "function" because a method belongs to a class usually ;-).
__module__
BTW, a class actually also has __module__ attribute.