File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Bug Fixes
29
29
30
30
- Compat with ``dateutil==2.6.0``; segfault reported in the testing suite (:issue:`14621`)
31
31
- Allow ``nanoseconds`` in ``Timestamp.replace`` as a kwarg (:issue:`14621`)
32
-
32
+ -Bug in indexing that transformed ``RecursionError`` into ``KeyError`` or ``IndexingError`` (:issue:`14554`)
33
33
34
34
35
35
Original file line number Diff line number Diff line change @@ -848,7 +848,7 @@ def _multi_take(self, tup):
848
848
[(a , self ._convert_for_reindex (t , axis = o ._get_axis_number (a )))
849
849
for t , a in zip (tup , o ._AXIS_ORDERS )])
850
850
return o .reindex (** d )
851
- except :
851
+ except ( KeyError , IndexError ) :
852
852
raise self ._exception
853
853
854
854
def _convert_for_reindex (self , key , axis = 0 ):
You can’t perform that action at this time.
0 commit comments