Skip to content

Commit fd1f6b6

Browse files
committed
corrected PR number
1 parent c44e2af commit fd1f6b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/whatsnew/v3.0.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ Other enhancements
210210
- :meth:`Series.map` can now accept kwargs to pass on to func (:issue:`59814`)
211211
- :meth:`Series.map` now accepts an ``engine`` parameter to allow execution with a third-party execution engine (:issue:`61125`)
212212
- :meth:`Series.rank` and :meth:`DataFrame.rank` with numpy-nullable dtypes preserve ``NA`` values and return ``UInt64`` dtype where appropriate instead of casting ``NA`` to ``NaN`` with ``float64`` dtype (:issue:`62043`)
213-
- :meth:`Series.round` now operates pointwise on columns of object dtype (:issue:`62173`)
213+
- :meth:`Series.round` now operates pointwise on columns of object dtype (:issue:`62174`)
214214
- :meth:`Series.str.get_dummies` now accepts a ``dtype`` parameter to specify the dtype of the resulting DataFrame (:issue:`47872`)
215215
- :meth:`pandas.concat` will raise a ``ValueError`` when ``ignore_index=True`` and ``keys`` is not ``None`` (:issue:`59274`)
216216
- :py:class:`frozenset` elements in pandas objects are now natively printed (:issue:`60690`)

pandas/tests/series/methods/test_round.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_round_ea_boolean(self):
7474
tm.assert_series_equal(ser, expected)
7575

7676
def test_round_dtype_object(self):
77-
# GH#61206, GH#62173
77+
# GH#61206, GH#62174
7878
ser = Series([0.232], dtype="object")
7979
expected = Series([0.2])
8080
tm.assert_series_equal(ser.round(1), expected)

0 commit comments

Comments
 (0)