David Duerrenmatt wrote:

> For some reasons, I've to use Python 1.5.2 and am looking for a
> workaround:
> 
> In newer Python versions, I can call a function this way:
> 
> func = some_function
> func(*params)
 
Use

apply(func, params) 

Peter

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

Reply via email to