This is an automated email from the ASF dual-hosted git repository.
AlenkaF pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 2e448f91a97 MINOR: [Python] Fix FeatherDataset.read_pandas docstring
referencing Parquet (#50952)
2e448f91a97 is described below
commit 2e448f91a97a42c452e798796f0811b64406d26f
Author: Arnav Ahire <[email protected]>
AuthorDate: Thu Aug 27 19:59:58 2026 +0530
MINOR: [Python] Fix FeatherDataset.read_pandas docstring referencing
Parquet (#50952)
### Rationale for this change
In `pyarrow.feather.FeatherDataset.read_pandas`, the docstring previously
stated:
```
Read multiple Parquet files as a single pandas DataFrame
```
which was copied from Parquet reader utilities.
### What changes are included in this PR?
Updates the docstring to correctly reference Feather files:
```
Read multiple Feather files as a single pandas DataFrame
```
### Are these changes tested?
Docstring update.
Authored-by: Arnav Ahire <[email protected]>
Signed-off-by: AlenkaF <[email protected]>
---
python/pyarrow/feather.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/pyarrow/feather.py b/python/pyarrow/feather.py
index effe30ba9b6..6ff2c1e799b 100644
--- a/python/pyarrow/feather.py
+++ b/python/pyarrow/feather.py
@@ -76,7 +76,7 @@ class FeatherDataset:
def read_pandas(self, columns=None, use_threads=True):
"""
- Read multiple Parquet files as a single pandas DataFrame
+ Read multiple Feather files as a single pandas DataFrame
Parameters
----------