Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(test): truediv
  • Loading branch information
cmp0xff committed Sep 24, 2025
commit a916a31a2dc8a60b4dee1603fbe8e71d0f3039c6
44 changes: 10 additions & 34 deletions pandas-stubs/core/indexes/base.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -770,47 +770,23 @@ class Index(IndexOpsMixin[S1]):
self: Index[int] | Index[float], other: timedelta
) -> TimedeltaIndex: ...
@overload
def __mul__(self, other: S1 | Sequence[S1] | Index[S1]) -> Self: ...
def __rmul__(self, other: S1 | Sequence[S1] | Index[S1]) -> Self: ...
def __mul__(
self, other: float | Sequence[float] | Index[int] | Index[float]
) -> Self: ...
def __rmul__(
self, other: float | Sequence[float] | Index[int] | Index[float]
) -> Self: ...
def __floordiv__(
self,
other: (
float
| IndexOpsMixin[int]
| IndexOpsMixin[float]
| Sequence[int]
| Sequence[float]
),
self, other: float | Sequence[float] | Index[int] | Index[float]
) -> Self: ...
def __rfloordiv__(
self,
other: (
float
| IndexOpsMixin[int]
| IndexOpsMixin[float]
| Sequence[int]
| Sequence[float]
),
self, other: float | Sequence[float] | Index[int] | Index[float]
) -> Self: ...
def __truediv__(
self,
other: (
float
| IndexOpsMixin[int]
| IndexOpsMixin[float]
| Sequence[int]
| Sequence[float]
),
self, other: float | Sequence[float] | Index[int] | Index[float]
) -> Self: ...
def __rtruediv__(
self,
other: (
float
| IndexOpsMixin[int]
| IndexOpsMixin[float]
| Sequence[int]
| Sequence[float]
),
self, other: float | Sequence[float] | Index[int] | Index[float]
) -> Self: ...
def infer_objects(self, copy: bool = True) -> Self: ...

Expand Down
Loading