diff --git a/pandas/core/arrays/categorical.py b/pandas/core/arrays/categorical.py index c4f7d6dbe32fa..dae8eda8a611e 100644 --- a/pandas/core/arrays/categorical.py +++ b/pandas/core/arrays/categorical.py @@ -267,6 +267,8 @@ class Categorical(ExtensionArray, PandasObject): An instance of ``CategoricalDtype`` to use for this categorical .. versionadded:: 0.21.0 + fastpath : bool, default False + Internal use only Attributes ---------- diff --git a/pandas/core/groupby/grouper.py b/pandas/core/groupby/grouper.py index 818d844ca7994..56aa933b07dcc 100644 --- a/pandas/core/groupby/grouper.py +++ b/pandas/core/groupby/grouper.py @@ -225,7 +225,8 @@ class Grouping: index : Index grouper : obj : - name : + name : object, default None + Name to be stored in the Grouping level : observed : boolean, default False If we are a Categorical, use the observed values diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py index 973a022cfc3f1..7621d3b0f9ccc 100644 --- a/pandas/core/indexes/base.py +++ b/pandas/core/indexes/base.py @@ -207,6 +207,8 @@ class Index(IndexOpsMixin, PandasObject): Make a copy of input ndarray name : object Name to be stored in the index + fastpath : bool, default None + Internal use only tupleize_cols : bool (default: True) When True, attempt to create a MultiIndex if possible diff --git a/pandas/core/indexes/category.py b/pandas/core/indexes/category.py index 9550d68f1d32b..b506f60667446 100644 --- a/pandas/core/indexes/category.py +++ b/pandas/core/indexes/category.py @@ -84,6 +84,8 @@ class CategoricalIndex(Index, accessor.PandasDelegate): Make a copy of input ndarray. name : object, optional Name to be stored in the index. + fastpath : bool, default None + Internal use only Attributes ---------- diff --git a/pandas/core/indexes/multi.py b/pandas/core/indexes/multi.py index 71b551adaf3ef..47fae3bccf983 100644 --- a/pandas/core/indexes/multi.py +++ b/pandas/core/indexes/multi.py @@ -157,6 +157,8 @@ class MultiIndex(Index): Names for each of the index levels. (name is accepted for compat). copy : bool, default False Copy the meta-data. + name : object, default None + Name to be stored in the index verify_integrity : bool, default True Check that the levels/codes are consistent and valid. diff --git a/pandas/core/indexes/period.py b/pandas/core/indexes/period.py index 0013df44614e8..080e1a3c5c750 100644 --- a/pandas/core/indexes/period.py +++ b/pandas/core/indexes/period.py @@ -114,6 +114,8 @@ class PeriodIndex(DatetimeIndexOpsMixin, Int64Index, PeriodDelegateMixin): tz : object, default None Timezone for converting datetime64 data to Periods dtype : str or PeriodDtype, default None + name : object, default None + Name to be stored in the index Attributes ---------- diff --git a/pandas/core/indexes/range.py b/pandas/core/indexes/range.py index 16098c474a473..91360d239eb11 100644 --- a/pandas/core/indexes/range.py +++ b/pandas/core/indexes/range.py @@ -54,6 +54,8 @@ class RangeIndex(Int64Index): Name to be stored in the index copy : bool, default False Unused, accepted for homogeneity with other index types. + fastpath : bool, default None + Internal use only Attributes ---------- diff --git a/pandas/core/series.py b/pandas/core/series.py index b3a7f38aef8ef..61fd562bc5a19 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -168,8 +168,12 @@ 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 : object, default None + Name to be stored in the Series copy : bool, default False Copy input data. + fastpath : bool, default False + Internal use only """ _metadata = ["name"]