Skip to content

Commit eb4af7e

Browse files
Backport PR #52877 on branch 2.0.x (BUG: Adding a columns to a Frame with RangeIndex columns using a non-scalar key) (#52881)
Backport PR #52877: BUG: Adding a columns to a Frame with RangeIndex columns using a non-scalar key Co-authored-by: Terji Petersen <terji78@gmail.com>
1 parent 6e7efb4 commit eb4af7e

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

doc/source/whatsnew/v2.0.1.rst

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Fixed regressions
2020
- Fixed regression in :meth:`MultiIndex.isin` raising ``TypeError`` for ``Generator`` (:issue:`52568`)
2121
- Fixed regression in :meth:`Series.describe` showing ``RuntimeWarning`` for extension dtype :class:`Series` with one element (:issue:`52515`)
2222
- Fixed regression in :meth:`SeriesGroupBy.agg` failing when grouping with categorical data, multiple groupings, ``as_index=False``, and a list of aggregations (:issue:`52760`)
23+
- Fixed regression when adding a new column to a :class:`DataFrame` when the :attr:`DataFrame.columns` was a :class:`RangeIndex` and the new key was hashable but not a scalar (:issue:`52652`)
2324

2425
.. ---------------------------------------------------------------------------
2526
.. _whatsnew_201.bug_fixes:
@@ -56,6 +57,7 @@ Other
5657
- :class:`Series` created from empty dicts had :attr:`~Series.index` of dtype ``object``. It is now a :class:`RangeIndex` (:issue:`52404`)
5758
- Implemented :meth:`Series.str.split` and :meth:`Series.str.rsplit` for :class:`ArrowDtype` with ``pyarrow.string`` (:issue:`52401`)
5859
- Implemented most ``str`` accessor methods for :class:`ArrowDtype` with ``pyarrow.string`` (:issue:`52401`)
60+
- Supplying a non-integer hashable key that tests ``False`` in :func:`api.types.is_scalar` now raises a ``KeyError`` for :meth:`RangeIndex.get_loc`, like it does for :meth:`Index.get_loc`. Previously it raised an ``InvalidIndexError`` (:issue:`52652`).
5961

6062
.. ---------------------------------------------------------------------------
6163
.. _whatsnew_201.contributors:

pandas/core/indexes/range.py

+2
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,8 @@ def get_loc(self, key):
345345
return self._range.index(new_key)
346346
except ValueError as err:
347347
raise KeyError(key) from err
348+
if isinstance(key, Hashable):
349+
raise KeyError(key)
348350
self._check_indexing_error(key)
349351
raise KeyError(key)
350352

pandas/tests/indexes/test_indexing.py

+30-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919

2020
from pandas.errors import InvalidIndexError
2121

22-
from pandas.core.dtypes.common import is_float_dtype
22+
from pandas.core.dtypes.common import (
23+
is_float_dtype,
24+
is_scalar,
25+
)
2326

2427
from pandas import (
2528
NA,
@@ -29,7 +32,6 @@
2932
MultiIndex,
3033
NaT,
3134
PeriodIndex,
32-
RangeIndex,
3335
TimedeltaIndex,
3436
)
3537
import pandas._testing as tm
@@ -179,6 +181,32 @@ def test_get_loc_non_hashable(self, index):
179181
with pytest.raises((TypeError, InvalidIndexError), match="slice"):
180182
index.get_loc(slice(0, 1))
181183

184+
def test_get_loc_non_scalar_hashable(self, index):
185+
# GH52877
186+
from enum import Enum
187+
188+
class E(Enum):
189+
X1 = "x1"
190+
191+
assert not is_scalar(E.X1)
192+
193+
exc = KeyError
194+
msg = "<E.X1: 'x1'>"
195+
if isinstance(
196+
index,
197+
(
198+
DatetimeIndex,
199+
TimedeltaIndex,
200+
PeriodIndex,
201+
IntervalIndex,
202+
),
203+
):
204+
# TODO: make these more consistent?
205+
exc = InvalidIndexError
206+
msg = "E.X1"
207+
with pytest.raises(exc, match=msg):
208+
index.get_loc(E.X1)
209+
182210
def test_get_loc_generator(self, index):
183211
exc = KeyError
184212
if isinstance(
@@ -187,7 +215,6 @@ def test_get_loc_generator(self, index):
187215
DatetimeIndex,
188216
TimedeltaIndex,
189217
PeriodIndex,
190-
RangeIndex,
191218
IntervalIndex,
192219
MultiIndex,
193220
),

0 commit comments

Comments
 (0)