Hi folks, I have a python callable object in C++ (call it 'f') and a tuple and dict of arguments (call them 't' and 'd'). In python, I could call f like this: f(*t, **d) Is there a convenient boost python way to call the python object f like this from C++? Thanks, Alex