Details
Description
PySide2 seems to create its own object for "None" internally instead of using the none created by the cpython runtime.
In [1]: import PySide2.QtWidgets In [2]: PySide2.__version__ Out[2]: '5.6.0~a1' In [3]: PySide2.QtWidgets.qApp Out[3]: None In [4]: id(PySide2.QtWidgets.qApp) Out[4]: 140515700103744 In [5]: id(None) Out[5]: 94436718787216
I tested this also with pyside2 5.13.1
Attachments
Issue Links
- relates to
-
PYSIDE-1178 Replacing the qApp "macro" by a no-surprizes qApp callable?
- Closed