>     getattr(heading, "process")(file_ptr)
...
> Is there an alternatice to getattr() that will solve my problem, or is
> there another way to do it.

How about:

eval("%s.process(%s)" % (heading, file_ptr))

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

Reply via email to