We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af93584 commit 0947ae6Copy full SHA for 0947ae6
tests/qmessagebox.py
@@ -2,3 +2,6 @@
2
3
a = QtWidgets.QMessageBox.Ok | QtWidgets.QMessageBox.Ok # type: QtWidgets.QMessageBox.StandardButtons
4
b = QtWidgets.QMessageBox.Ok | 0 # type: int
5
+c = a | 0 # type: QtWidgets.QMessageBox.StandardButtons
6
+d = a | QtWidgets.QMessageBox.Ok # type: QtWidgets.QMessageBox.StandardButtons
7
+e = a | a # type: QtWidgets.QMessageBox.StandardButtons
0 commit comments