[Tutor] Introspection (modules and functions)

Negroup - negroup at gmail.com
Wed Nov 23 15:06:57 CET 2005


Hi.

My application hosts a module A that contains only a (variable) number
of functions. In another part of this application I need to know which
functions are defined inside module A. Initially I thought to use
__dict__, but along with the functions of module A are listed all the
builtins too.

How is possible to obtain this information without defining
return_all_functions() (see below)?

Actually module A is something like:

def f1():
  pass

def f2():
  pass

# def ....
# def ...

def return_all_functions():
t = (f1, f2, ....)
return t

Thanks


More information about the Tutor mailing list