> target = <module or any other objet here>
> for funcname in funclist:
> func = getattr(target, funcname, None)
> if callable(func):
> func(*args, **kwargs)
Nice. 'callable' is new to me. Live and learn :)

\d

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to