You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUG/CoW: is_range_indexer can't handle very large arrays (pandas-dev#53672)
* BUG: is_range_indexer can't handle very large arrays
* fix test on 32-bit
(cherry picked from commit 905fe6b)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v2.0.3.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Bug fixes
24
24
- Bug in :func:`RangeIndex.union` when using ``sort=True`` with another :class:`RangeIndex` (:issue:`53490`)
25
25
- Bug in :func:`read_csv` when defining ``dtype`` with ``bool[pyarrow]`` for the ``"c"`` and ``"python"`` engines (:issue:`53390`)
26
26
- Bug in :meth:`Series.str.split` and :meth:`Series.str.rsplit` with ``expand=True`` for :class:`ArrowDtype` with ``pyarrow.string`` (:issue:`53532`)
27
-
-
27
+
- Bug in indexing methods (e.g. :meth:`DataFrame.__getitem__`) where taking the entire :class:`DataFrame`/:class:`Series` would raise an ``OverflowError`` when Copy on Write was enabled and the length of the array was over the maximum size a 32-bit integer can hold (:issue:`53616`)
0 commit comments