Skip to content

1.2.3

Compare
Choose a tag to compare
@mottosso mottosso released this 12 Dec 07:20
· 183 commits to master since this release
62dc86b

New mechanism for warning about members that are missing and supposed to be missing, currently only QtGui.QMatrix.

If you discover or know about a member that isn't in Qt.py and shouldn't be, you can add a it to _missing_members.

_missing_members = {
    "QtGui": {
        "QMatrix": "Deprecated in PyQt5",
        "YOUR MEMBER": "Message to display whenever anyone tries to access it"
    },
}