Skip to content

Commit 182f94e

Browse files
tuhinsharma121ShashwatAgrawal20
authored andcommitted
DOC: fix ES01 for pandas.Series.array (pandas-dev#60837)
1 parent 715ba19 commit 182f94e

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)