class ThingWrapper(QtCore.QObject): def __init__(self, thing): QtCore.QObject.__init__(self) self._thing = thingdef _name(self): return str(self._thing)
к
к