pitrou commented on code in PR #12800:
URL: https://github.com/apache/arrow/pull/12800#discussion_r852846119
##########
python/pyarrow/ipc.py:
##########
@@ -89,10 +95,19 @@ class RecordBatchFileReader(lib._RecordBatchFileReader):
footer_offset : int, default None
If the file is embedded in some larger file, this is the byte offset to
the very end of the file data
+ options : pyarrow.ipc.IpcReadOptions
+ Options for IPC serialization.
+
Review Comment:
Nit: remove this empty line?
##########
python/pyarrow/ipc.py:
##########
@@ -39,10 +39,16 @@ class RecordBatchStreamReader(lib._RecordBatchStreamReader):
----------
source : bytes/buffer-like, pyarrow.NativeFile, or file-like Python object
Either an in-memory buffer, or a readable file object.
+ options : pyarrow.ipc.IpcReadOptions
+ Options for IPC deserialization.
+ If None, default values will be used.
+ memory_pool : MemoryPool, default None
+ Uses default memory pool if not specified.
Review Comment:
Let's use a consistent style, so:
```suggestion
If None, default memory pool is used.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]