Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
5.14.0
-
None
-
-
b31aef2900478ef463c65dff5a3ea92b8fc047d7 (qt/qtbase/5.14)
Description
When a UI file contains:
<zorder>something</zorder>
running:
uic -g python file.ui
will generate the code:
something.raise()
which is valid on C++, but for Python, the function is called raise_() due to the conflict with the reserved Python statement raise.