"eval" is not necessary in this case.
If you have a tuple with function names such as this: x=(printFoo,
printFOO)

you can execute them this way:

>>> for f in x:
        f()

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

Reply via email to