Skip to content

Commit d703256

Browse files
author
ankostis
committed
DOC: Improve doc-string for copy kw on convert_object() (GH1234)
1 parent 300610e commit d703256

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)