QMetaObject::invokeMethod doesn't find methods with parameters
问题 This is a follow up of QMetaObject::invokeMethod doesn't find the method. Invoking a method without paramters works. But extending the previous question to methods with parameters brings me back to failure again. See the following example script in Python: from PySide import QtCore class Example(QtCore.QObject): def __init__(self): super().__init__() @QtCore.Slot() def dup(self): beep('dup-class') @QtCore.Slot(str) def beep(self, text): print(text) @QtCore.Slot() def dup(self): beep('dup