diff --git a/pandas/core/arrays/base.py b/pandas/core/arrays/base.py index 0778b6726d104..7a16c3f6a35b6 100644 --- a/pandas/core/arrays/base.py +++ b/pandas/core/arrays/base.py @@ -177,7 +177,7 @@ def _from_sequence(cls, scalars, dtype=None, copy=False): dtype : dtype, optional Construct for this particular dtype. This should be a Dtype compatible with the ExtensionArray. - copy : boolean, default False + copy : bool, default False If True, copy the underlying data. Returns @@ -200,7 +200,7 @@ def _from_sequence_of_strings(cls, strings, dtype=None, copy=False): dtype : dtype, optional Construct for this particular dtype. This should be a Dtype compatible with the ExtensionArray. - copy : boolean, default False + copy : bool, default False If True, copy the underlying data. Returns @@ -769,7 +769,7 @@ def take( Parameters ---------- - indices : sequence of integers + indices : sequence of int Indices to be taken. allow_fill : bool, default False How to handle negative values in `indices`.