Skip to content

DOC: fix formatting in the ExtensionArray docstrings #28686

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Oct 14, 2019
13 changes: 8 additions & 5 deletions pandas/core/arrays/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def fillna(self, value=None, method=None, limit=None):
method : {'backfill', 'bfill', 'pad', 'ffill', None}, default None
Method to use for filling holes in reindexed Series
pad / ffill: propagate last valid observation forward to next valid
backfill / bfill: use NEXT valid observation to fill gap
backfill / bfill: use NEXT valid observation to fill gap.
limit : int, default None
If method is specified, this is the maximum number of consecutive
NaN values to forward/backward fill. In other words, if there is
Expand All @@ -485,7 +485,8 @@ def fillna(self, value=None, method=None, limit=None):

Returns
-------
filled : ExtensionArray with NA/NaN filled
ExtensionArray
With NA/NaN filled.
"""
value, method = validate_fillna_kwargs(value, method)

Expand Down Expand Up @@ -539,13 +540,14 @@ def shift(self, periods: int = 1, fill_value: object = None) -> ABCExtensionArra

fill_value : object, optional
The scalar value to use for newly introduced missing values.
The default is ``self.dtype.na_value``
The default is ``self.dtype.na_value``.

.. versionadded:: 0.24.0

Returns
-------
shifted : ExtensionArray
ExtensionArray
Shifted.

Notes
-----
Expand Down Expand Up @@ -869,11 +871,12 @@ def view(self, dtype=None) -> Union[ABCExtensionArray, np.ndarray]:
Parameters
----------
dtype : str, np.dtype, or ExtensionDtype, optional
Default None
Default None.

Returns
-------
ExtensionArray
A view of the :class:`ExtensionArray`.
"""
# NB:
# - This must return a *new* object referencing the same data, not self.
Expand Down