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
_______________________________________________
Tutor maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/tutor

Reply via email to