- Allow QtWidgets layout class constructor with parent as None
- Better description of QtCore.Slot()
- fix QObject.inherits() type signature
- fix QStateMachine.assignProperty() type signature
- add description of all public variables
- add all missing signals to the stubs (many were missing)
- add conversion from
QByteArray
tobytes
- add construction of
QByteArray
from length and string - fix
QFileDialog.getOpen*()
methods to acceptNone
as parent argument - fix
QLineEdit.setText()
to acceptNone
- fix
QTreeWidget.setItemWidget()
andQListWidget.setItemWidget()
to acceptNone
as a widget argument - fix
QProgressDialog.setCancelButton()
acceptingNone
- support all
QSize
andQSizeF
operations - fix
QTabBar.setButtonWidget()
to acceptNone
as a widget argument - fix
QTreeWidget.topLevelItem()
returning possiblyNone
- fix
QTreeWidgetItem
comparison with<
- fix
QMessageBox.warning
,information
,critical
,question
,about
,aboutQt
to acceptNone
as parent argument - fix
qVersion()
returns string, not bytes - fix
qDebug()
,qWarning()
,qCritical()
,qFatal()
,SIGNAL()
,SLOT()
to accept string, not bytes - fix
Signal.connect()
,Signal.disconnect()
,QObject.connect()
andQObject.disconnect()
to acceptstr
instead ofbool
, and to returnbool
on disconnect. - fix incorrect signature of
QCoreApplication.translate()
- improve signature of operations on
QPolygon