Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pandas-dev/pandas
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 44806e165f4aa17b764b8cf8660b5857c5b72d5c
Choose a base ref
..
head repository: pandas-dev/pandas
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5922a8c18393059c0b9d3e9e41efa82eb9767d58
Choose a head ref
Showing with 2 additions and 3 deletions.
  1. +2 −3 pandas/core/series.py
5 changes: 2 additions & 3 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
@@ -170,9 +170,6 @@ class Series(base.IndexOpsMixin, generic.NDFrame):
Copy input data.
"""

div: Callable[["Series"], "Series"]
rdiv: Callable[["Series"], "Series"]

_metadata: List[str] = []
_accessors = {"dt", "cat", "str", "sparse"}
_deprecations = (
@@ -188,6 +185,8 @@ class Series(base.IndexOpsMixin, generic.NDFrame):
base.IndexOpsMixin.hasnans.func, doc=base.IndexOpsMixin.hasnans.__doc__
)
_data: SingleBlockManager
div: Callable[["Series"], "Series"]
rdiv: Callable[["Series"], "Series"]

# ----------------------------------------------------------------------
# Constructors