Skip to content

Commit 9621fc2

Browse files
committed
DOC: Added documentation to name and fastpath arguments in series.py(\pandas-dev#27178)
1 parent 9f93d57 commit 9621fc2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/core/series.py

+5
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,11 @@ class Series(base.IndexOpsMixin, generic.NDFrame):
172172
See the :ref:`user guide <basics.dtypes>` for more usages.
173173
copy : bool, default False
174174
Copy input data.
175+
name: str, default None
176+
Sets the name of the array/ series. Can be called with Series.name
177+
fastpath: bool, default False
178+
Internally used to prevent the over-parsing data format/ type which
179+
is otherwise required by external calls (such as user calls)
175180
"""
176181

177182
_metadata = ["name"]

0 commit comments

Comments
 (0)