1.5.2 and functools or similar

Paul Rubin http
Sun Mar 9 19:35:07 EDT 2008


"Troels Thomsen" <nej tak ...> writes:
>         timerItm.func(*timerItm.parameters)
> 
> Works well on python 2.5 but not on 1.5.2 (?)

I think in 1.5.2 the *args notation wasn't present and you had to say:

   apply(timerItm.func, timerItm.parameters)



More information about the Python-list mailing list