Skip to content

Commit a9a9610

Browse files
committed
Merge pull request #6791 from ankostis/master
DOC: Improve doc-string for `copy` kw on `convert_object()` (GH1234)
2 parents 300610e + d703256 commit a9a9610

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/core/generic.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2093,7 +2093,9 @@ def convert_objects(self, convert_dates=True, convert_numeric=False,
20932093
strings), non-convertibles get NaN
20942094
convert_timedeltas : if True, attempt to soft convert timedeltas, if 'coerce',
20952095
force conversion (and non-convertibles get NaT)
2096-
copy : Boolean, if True, return copy, default is True
2096+
copy : Boolean, if True, return copy even if no copy is necessary
2097+
(e.g. no conversion was done), default is True.
2098+
It is meant for internal use, not to be confused with `inplace` kw.
20972099
20982100
Returns
20992101
-------

0 commit comments

Comments
 (0)