Releases: mottosso/Qt.py
Releases · mottosso/Qt.py
1.3.8
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
Improved error messaging on missing DLLs when importing Qt.py.
# Before
Qt.py [warning]: ImportError: DLL load failed: The specified module could not be found.
# After
Qt.py [warning]: ImportError(QtXmlPatterns): DLL load failed: The specified module could not be found.
1.3.1
1.3.0
Updated QtCompat.wrapInstance
to closer mimic the behavior of sip.wrapInstance
when used with shiboken
, in that it'll find the closest superclass rather than always resort to QObject
.
This may, but shouldn't, affect the behavior of your code. One edgecase that comes to mind is if you've used type(myobject) == QObject
rather than isinstance(myobject, QObject)
in which case your test may now break. Hence I've updated the minor rather than the patch version of this release. If you spot anything else, feel free to raise an issue or submit a PR with a fix.
- See #349 for details
- Thanks @mitchellsimmons for this update!