Skip to content

Commit 4986716

Browse files
correct the wrong issue number
1 parent dd82ca7 commit 4986716

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
@@ -1231,7 +1231,7 @@ ways of adding operator support.
12311231
- :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`).
12321232
- Bug when grouping :meth:`Dataframe.groupby()` and aggregating on ``ExtensionArray`` it was not returning the actual ``ExtensionArray`` dtype (:issue:`23227`).
12331233
- Bug in :func:`pandas.merge` when merging on an extension array-backed column (:issue:`23020`).
1234-
- Bug in :func:`pandas.merge` when setting None in suffixes (:issue: `24819`).
1234+
- Bug in :func:`pandas.merge` when setting None in suffixes (:issue: `24782`).
12351235

12361236

12371237
.. _whatsnew_0240.deprecations:

pandas/tests/reshape/merge/test_merge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1517,7 +1517,7 @@ def test_merge_series(on, left_on, right_on, left_index, right_index, nm):
15171517
("a", 0, (None, "_y"), ["a", 0])
15181518
])
15191519
def test_merge_suffix(col1, col2, suffixes, expected_cols):
1520-
# 24819
1520+
# issue: 24782
15211521
a = pd.DataFrame({col1: [1, 2, 3]})
15221522
b = pd.DataFrame({col2: [4, 5, 6]})
15231523

@@ -1531,7 +1531,7 @@ def test_merge_suffix(col1, col2, suffixes, expected_cols):
15311531
(None, '')
15321532
])
15331533
def test_merge_suffix_errors(suffixes):
1534-
# 24819
1534+
# issue: 24782
15351535
a = pd.DataFrame({0: [1, 2, 3]})
15361536
b = pd.DataFrame({0: [4, 5, 6]})
15371537

0 commit comments

Comments
 (0)