File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed
Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 11
22
3- In development
3+ Version 6.7.3.0
44==============
5- * Allow QtWidgets layout class constructor with parent as None
6- * Better description of QtCore.Slot()
7- * fix QObject.inherits() type signature
8- * fix QStateMachine.assignProperty() type signature
9- * add description of all public variables
5+ * Synchronize stubs with upstream PySide6 6.7.3
6+ * add typing information for all properties
7+ * Allow ` QGridLayout ` , ` QHBoxLayout ` and ` QVBoxLayout ` to accept parent as None
8+ * Make ` QtCore.Slot() ` verify its arguments and return value
9+ * fix ` QObject.inherits() ` type signature to accept string
10+ * fix ` QStateMachine.assignProperty() ` type signature
11+ * fix ` QObject.findChildren() ` and ` QObject.findChild() ` to detect that type being returned is the one being searched
12+ * fix many methods in QtCore incorrectly declared to accept bytes instead of string, like ` QTimer.singleShot() `
13+ * fix ` QColumnView ` , ` QHeaderView ` , ` QTreeView ` and more to accept None as model argument in ` setModel() `
14+ * allow ` QProcess.ExitStatus.NormalExit.value ` to be seen as ` int `
1015
1116Version 6.4.2.0
1217===============
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ official stubs delivered along with PySide6 are reasonably good but may be incom
1010for proper typing verification with ` mypy ` .
1111
1212### Notable improvements:
13- * add all missing signals to the stubs (many were missing)
13+ * add typing information for all properties
1414* add conversion from ` QByteArray ` to ` bytes `
1515* add construction of ` QByteArray ` from length and string
1616* fix ` QFileDialog.getOpen*() ` methods to accept ` None ` as parent argument
@@ -28,6 +28,7 @@ for proper typing verification with `mypy`.
2828 of ` bool ` , and to return ` bool ` on disconnect.
2929* fix incorrect signature of ` QCoreApplication.translate() `
3030* improve signature of operations on ` QPolygon `
31+ * fix ` QObject.findChildren() ` and ` QObject.findChild() ` to detect that type being returned is the one being searched
3132
3233
3334See [ CHANGELOG.md] ( CHANGELOG.md ) for full details.
You can’t perform that action at this time.
0 commit comments