Details
-
Bug
-
Resolution: Won't Do
-
P3: Somewhat important
-
None
-
5.15.14
-
None
-
4e779d0e3 (dev), e974afba7 (dev), 30c20bb1d (6.8), 814f2304e (6.8)
Description
Qt::mightBeRichText and Qt::convertFromPlainText are defined in QtCore.pyi.
- They should be defined in QtGui since they belong to gui module.
(see here) - They do not take a self argument.
def convertFromPlainText(self, plain: str, mode: QtCore.Qt.WhiteSpaceMode = ...) -> str: ... def mightBeRichText(self, a0: str) -> bool: ...