File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -565,7 +565,7 @@ def from_dummies(
565
565
and not isinstance (value , str )
566
566
and (is_list_like (value ) or not isna (value ))
567
567
):
568
- # GH#???
568
+ # https://github.com/pandas-dev/pandas/pull/60694
569
569
# `value` is not a string or NA.
570
570
# Using data.columns.dtype would coerce `value` into a string.
571
571
dtype = "object"
Original file line number Diff line number Diff line change @@ -449,7 +449,7 @@ def test_maintain_original_index():
449
449
450
450
451
451
def test_int_columns_with_float_default ():
452
- # GH#???
452
+ # https://github.com/pandas-dev/pandas/pull/60694
453
453
df = DataFrame (
454
454
{
455
455
3 : [1 , 0 , 0 ],
@@ -461,7 +461,7 @@ def test_int_columns_with_float_default():
461
461
462
462
463
463
def test_object_dtype_preserved ():
464
- # GH#???
464
+ # https://github.com/pandas-dev/pandas/pull/60694
465
465
# When the input has object dtype, the result should as
466
466
# well even when infer_string is True.
467
467
df = DataFrame (
You can’t perform that action at this time.
0 commit comments