IceSpringPySideStubs icon indicating copy to clipboard operation
IceSpringPySideStubs copied to clipboard

PySide stubs with Qt signals and Qt documentations and more.

Results 4 IceSpringPySideStubs issues
Sort by recently updated
recently updated
newest added

#### Problem `QtCore.Qt.WindowType` is typed as a python `enum.Enum`, however `enum.Enum`s do not support bitwise operations. Piping several options together gives the `mypy` error: ```powershell Operator "|" not supported for...

In nearly all stub files in this package, `bytes` has been overwritten by `str` as follows: ```python bytes = str ``` This incorrectly allows `mypy` to pass statements such as...

`NoneType` was [removed](https://bugs.python.org/issue19438) from [types](https://docs.python.org/3.9/library/types.html) in python versions 3.0 to 3.9, but [placed back](https://docs.python.org/3.10/whatsnew/3.10.html) in version 3.10 for type checking. In versions < 3.10, using `NoneType` implicitly in the `IceSpring`...

Hello! Thanks for creating this stubs package, it is really helpful! I tried using it, but got weird behavior on many docs. Example: `window.setCursor(QtGui.QCursor(QtCore.Qt.ArrowCursor))` ![image](https://user-images.githubusercontent.com/28756462/157057111-46bb89c3-5bcc-4af4-8063-565a64ea551c.png) ![image](https://user-images.githubusercontent.com/28756462/157056831-f71f1aa0-6e53-4a14-90c8-d5a7e38b2f38.png) ![image](https://user-images.githubusercontent.com/28756462/157057173-32f4beda-0b3a-4810-8b39-2dc9a476487e.png) ![image](https://user-images.githubusercontent.com/28756462/157057223-c4c2c689-8a0b-4f5b-bf25-de5785823b2c.png) ![image](https://user-images.githubusercontent.com/28756462/157057260-4eb4791a-3e6c-4401-b138-a584757d1744.png) Python...