Are the CALL_FUNCTION_* opcodes ever used?

Fabiano Sidler fabianosidler at gmail.com
Fri Sep 22 18:30:36 EDT 2006


On Thursday 21 September 2006 22:36, Peter Otten wrote:
> >>> def test():
>
> ...     func(*args)
> ...     func(**kw)
> ...     func(*args, **kw)

Oh, I didn't know the possibility of using the *args and **kwargs semantics
at function call. Thank you for revealing them to me! :)
Now it is also obvious how the CALL_FUNCTION_* opcodes are used.

Greetings,
Fips



More information about the Python-list mailing list