diff --git a/pandas/core/series.py b/pandas/core/series.py index 3f04970ee4e58..a0fa7ab84e44c 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -170,8 +170,13 @@ class Series(base.IndexOpsMixin, generic.NDFrame): Data type for the output Series. If not specified, this will be inferred from `data`. See the :ref:`user guide ` for more usages. + name : str, default None + Sets the name of the array/ series. Can be called with Series.name copy : bool, default False Copy input data. + fastpath : bool, default False + Internally used to prevent the over-parsing data format/ type which + is otherwise required by external calls (such as user calls) """ _metadata = ["name"]