PyQt类是否从对象继承?

| PyQt类是否从对象继承?     
已邀请:
>>> from PyQt4 import QtCore
>>> QtCore.QObject.__mro__
(<class \'PyQt4.QtCore.QObject\'>, <type \'sip.wrapper\'>, <type \'sip.simplewrapper\'>, <type \'object\'>)
因此答案是肯定的(至少
QObject
可以,但我假设non1ѭ的非后裔也可以)。     

要回复问题请先登录注册