10 PyObject* PyROOT::TClassMethodHolder::Call(
11 ObjectProxy*&, PyObject* args, PyObject* kwds, TCallContext* ctxt )
14 if ( kwds != 0 && PyDict_Size( kwds ) ) {
15 PyErr_SetString( PyExc_TypeError,
"keyword arguments are not yet supported" );
20 if ( ! this->Initialize( ctxt ) )
24 if ( ! this->ConvertAndSetArgs( args, ctxt ) )
28 return this->Execute( 0, 0, ctxt );