We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48cd163 commit 0e3fcfdCopy full SHA for 0e3fcfd
pandas/core/series.py
@@ -272,7 +272,6 @@ class Series(base.IndexOpsMixin, generic.NDFrame):
272
hasnans = property( # type: ignore[assignment]
273
base.IndexOpsMixin.hasnans.func, doc=base.IndexOpsMixin.hasnans.__doc__
274
)
275
- __hash__ = generic.NDFrame.__hash__
276
_mgr: SingleManager
277
div: Callable[[Series, Any], Series]
278
rdiv: Callable[[Series, Any], Series]
@@ -911,6 +910,7 @@ def __getitem__(self, key):
911
910
elif key_is_scalar:
912
return self._get_value(key)
913
+ breakpoint()
914
if is_hashable(key):
915
# Otherwise index.get_value will raise InvalidIndexError
916
try:
0 commit comments