From 8081cb63b3cf5395a406331b08bb87b413f5e2b4 Mon Sep 17 00:00:00 2001 From: simpleqt <89645338+simpleqt@users.noreply.github.com> Date: Thu, 17 Sep 2026 00:33:47 +0800 Subject: [PATCH] MINOR: [Python] Fix the buffer parameter name in the interchange docstring buffers_to_array's Parameters block documents 'buffer', but the parameter is 'buffers'. Signed-off-by: simpleqt <89645338+simpleqt@users.noreply.github.com> --- python/pyarrow/interchange/from_dataframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyarrow/interchange/from_dataframe.py b/python/pyarrow/interchange/from_dataframe.py index fc6530a83316..dba92a3aac42 100644 --- a/python/pyarrow/interchange/from_dataframe.py +++ b/python/pyarrow/interchange/from_dataframe.py @@ -330,7 +330,7 @@ def buffers_to_array( Parameters ---------- - buffer : ColumnBuffers + buffers : ColumnBuffers Dictionary containing tuples of underlying buffers and their associated dtype. data_type : Tuple[DtypeKind, int, str, str],