Skip to content

Commit b62d9e7

Browse files
authored
Merge branch 'master' into feature
2 parents 84496e6 + 8a25b23 commit b62d9e7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

doc/source/whatsnew/v1.1.4.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Fixed regressions
1919
- Fixed regression where :meth:`DataFrame.agg` would fail with :exc:`TypeError` when passed positional arguments to be passed on to the aggregation function (:issue:`36948`).
2020
- Fixed regression in :class:`RollingGroupby` with ``sort=False`` not being respected (:issue:`36889`)
2121
- Fixed regression in :meth:`Series.astype` converting ``None`` to ``"nan"`` when casting to string (:issue:`36904`)
22+
- Fixed regression in :class:`RollingGroupby` causing a segmentation fault with Index of dtype object (:issue:`36727`)
2223

2324
.. ---------------------------------------------------------------------------
2425

pandas/tests/tools/test_to_datetime.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1661,9 +1661,9 @@ def test_to_datetime_overflow(self):
16611661
# we are overflowing Timedelta range here
16621662

16631663
msg = (
1664-
"Python int too large to convert to C long|"
1665-
"int too big to convert|"
1666-
"long too big to convert"
1664+
"(Python int too large to convert to C long)|"
1665+
"(long too big to convert)|"
1666+
"(int too big to convert)"
16671667
)
16681668
with pytest.raises(OverflowError, match=msg):
16691669
date_range(start="1/1/1700", freq="B", periods=100000)

0 commit comments

Comments
 (0)