Skip to content

Commit 4f664f1

Browse files
DOC: fix ES01 for pandas.Series.array (#60837)
1 parent 569f94d commit 4f664f1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/core/base.py

+5
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,11 @@ def array(self) -> ExtensionArray:
506506
"""
507507
The ExtensionArray of the data backing this Series or Index.
508508
509+
This property provides direct access to the underlying array data of a
510+
Series or Index without requiring conversion to a NumPy array. It
511+
returns an ExtensionArray, which is the native storage format for
512+
pandas extension dtypes.
513+
509514
Returns
510515
-------
511516
ExtensionArray

0 commit comments

Comments
 (0)