Skip to content

Commit 13969b5

Browse files
correct the wrong issue number
1 parent 45ffc93 commit 13969b5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/source/whatsnew/v0.24.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1210,7 +1210,7 @@ update the ``ExtensionDtype._metadata`` tuple to match the signature of your
12101210
- :meth:`Series.unstack` and :meth:`DataFrame.unstack` no longer convert extension arrays to object-dtype ndarrays. Each column in the output ``DataFrame`` will now have the same dtype as the input (:issue:`23077`).
12111211
- Bug when grouping :meth:`Dataframe.groupby()` and aggregating on ``ExtensionArray`` it was not returning the actual ``ExtensionArray`` dtype (:issue:`23227`).
12121212
- Bug in :func:`pandas.merge` when merging on an extension array-backed column (:issue:`23020`).
1213-
- Bug in :func:`pandas.merge` when setting None in suffixes (:issue: `24819`).
1213+
- Bug in :func:`pandas.merge` when setting None in suffixes (:issue: `24782`).
12141214

12151215

12161216
.. _whatsnew_0240.deprecations:

pandas/tests/reshape/merge/test_merge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1451,7 +1451,7 @@ def test_merge_series(on, left_on, right_on, left_index, right_index, nm):
14511451
("a", 0, (None, "_y"), ["a", 0])
14521452
])
14531453
def test_merge_suffix(col1, col2, suffixes, expected_cols):
1454-
# 24819
1454+
# issue: 24782
14551455
a = pd.DataFrame({col1: [1, 2, 3]})
14561456
b = pd.DataFrame({col2: [4, 5, 6]})
14571457

@@ -1465,7 +1465,7 @@ def test_merge_suffix(col1, col2, suffixes, expected_cols):
14651465
(None, '')
14661466
])
14671467
def test_merge_suffix_errors(suffixes):
1468-
# 24819
1468+
# issue: 24782
14691469
a = pd.DataFrame({0: [1, 2, 3]})
14701470
b = pd.DataFrame({0: [4, 5, 6]})
14711471

0 commit comments

Comments
 (0)