@@ -2029,7 +2029,7 @@ class QDate(Shiboken.Object):
20292029 def __init__(self) -> None: ...
20302030 @overload
20312031 def __init__(self, QDate: PySide6.QtCore.QDate) -> None: ...
2032- @overload
2032+ @overload
20332033 def __init__(self, dt: datetime.datetime) -> None: ...
20342034 @overload
20352035 def __init__(self, d: datetime.date) -> None: ...
@@ -6163,19 +6163,12 @@ class QPoint(Shiboken.Object):
61636163 @staticmethod
61646164 def __copy__() -> None: ...
61656165 def __iadd__(self, p: PySide6.QtCore.QPoint) -> PySide6.QtCore.QPoint: ...
6166- @overload
6167- def __imul__(self, factor: float) -> PySide6.QtCore.QPoint: ...
6168- @overload
6169- def __imul__(self, factor: float) -> PySide6.QtCore.QPoint: ...
6170- @overload
6171- def __imul__(self, factor: int) -> PySide6.QtCore.QPoint: ...
6166+ def __imul__(self, factor: Union[int, float]) -> PySide6.QtCore.QPoint: ...
61726167 def __isub__(self, p: PySide6.QtCore.QPoint) -> PySide6.QtCore.QPoint: ...
6173- @overload
6174- def __mul__(self, factor: float) -> PySide6.QtCore.QPoint: ...
6175- @overload
6176- def __mul__(self, factor: float) -> PySide6.QtCore.QPoint: ...
6177- @overload
6178- def __mul__(self, factor: int) -> PySide6.QtCore.QPoint: ...
6168+ def __mul__(self, factor: Union[int, float]) -> PySide6.QtCore.QPoint: ...
6169+ def __rmul__(self, factor: Union[int, float]) -> PySide6.QtCore.QPoint: ...
6170+ def __truediv__(self, division: Union[int, float]) -> PySide6.QtCore.QPoint: ...
6171+ def __itruediv__(self, division: Union[int, float]) -> PySide6.QtCore.QPoint: ...
61796172 def __neg__(self) -> PySide6.QtCore.QPoint: ...
61806173 def __pos__(self) -> PySide6.QtCore.QPoint: ...
61816174 def __reduce__(self) -> object: ...
@@ -6209,9 +6202,12 @@ class QPointF(Shiboken.Object):
62096202 @staticmethod
62106203 def __copy__() -> None: ...
62116204 def __iadd__(self, p: Union[PySide6.QtCore.QPointF, PySide6.QtCore.QPoint]) -> PySide6.QtCore.QPointF: ...
6212- def __imul__(self, c: float) -> PySide6.QtCore.QPointF: ...
6205+ def __imul__(self, factor: Union[int, float] ) -> PySide6.QtCore.QPointF: ...
62136206 def __isub__(self, p: Union[PySide6.QtCore.QPointF, PySide6.QtCore.QPoint]) -> PySide6.QtCore.QPointF: ...
6214- def __mul__(self, c: float) -> PySide6.QtCore.QPointF: ...
6207+ def __mul__(self, factor: Union[int, float]) -> PySide6.QtCore.QPointF: ...
6208+ def __rmul__(self, factor: Union[int, float]) -> PySide6.QtCore.QPointF: ...
6209+ def __truediv__(self, division: Union[int, float]) -> PySide6.QtCore.QPointF: ...
6210+ def __itruediv__(self, division: Union[int, float]) -> PySide6.QtCore.QPointF: ...
62156211 def __neg__(self) -> PySide6.QtCore.QPointF: ...
62166212 def __pos__(self) -> PySide6.QtCore.QPointF: ...
62176213 def __reduce__(self) -> object: ...
0 commit comments