Skip to content

Commit 40448cc

Browse files
committed
Add GH references
1 parent 7a22663 commit 40448cc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pandas/core/reshape/encoding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ def from_dummies(
565565
and not isinstance(value, str)
566566
and (is_list_like(value) or not isna(value))
567567
):
568-
# GH#???
568+
# https://github.com/pandas-dev/pandas/pull/60694
569569
# `value` is not a string or NA.
570570
# Using data.columns.dtype would coerce `value` into a string.
571571
dtype = "object"

pandas/tests/reshape/test_from_dummies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ def test_maintain_original_index():
449449

450450

451451
def test_int_columns_with_float_default():
452-
# GH#???
452+
# https://github.com/pandas-dev/pandas/pull/60694
453453
df = DataFrame(
454454
{
455455
3: [1, 0, 0],
@@ -461,7 +461,7 @@ def test_int_columns_with_float_default():
461461

462462

463463
def test_object_dtype_preserved():
464-
# GH#???
464+
# https://github.com/pandas-dev/pandas/pull/60694
465465
# When the input has object dtype, the result should as
466466
# well even when infer_string is True.
467467
df = DataFrame(

0 commit comments

Comments
 (0)