Hi folks,
I am writing an extension which will be called from python using C-style printf variable arguments.
For example:
import the_extension
something="string"
number=10
the_extension.doit("foo %s:%d\n", something, number)
Looking at the documentation on argument parsing I don’t see a way to handle this style of arguments. It would seem I would need to check that the argument list is a tuple and then manually iterate over the arguments. Can anyone suggest a better way?