wjones127 commented on code in PR #15214:
URL: https://github.com/apache/arrow/pull/15214#discussion_r1063831566


##########
python/pyarrow/ipc.pxi:
##########
@@ -84,11 +84,11 @@ class ReadStats(_ReadStats):
 
     Parameters
     ----------
-    num_messages : number of messages.
-    num_record_batches : number of record batches.
-    num_dictionary_batches : number of dictionary batches.
-    num_dictionary_deltas : delta of dictionaries.
-    num_replaced_dictionaries : number of replaced dictionaries.
+    num_messages : number of messages
+    num_record_batches : number of record batches
+    num_dictionary_batches : number of dictionary batches
+    num_dictionary_deltas : delta of dictionaries
+    num_replaced_dictionaries : number of replaced dictionaries

Review Comment:
   ```suggestion
       num_messages : int
           Number of messages.
       num_record_batches : int
           Number of record batches.
       num_dictionary_batches : int
           Number of dictionary batches.
       num_dictionary_deltas : int
           Delta of dictionaries.
       num_replaced_dictionaries : int
           Number of replaced dictionaries.
   ```



##########
python/pyarrow/ipc.pxi:
##########
@@ -57,11 +57,11 @@ class WriteStats(_WriteStats):
 
     Parameters
     ----------
-    num_messages : number of messages.
-    num_record_batches : number of record batches.
-    num_dictionary_batches : number of dictionary batches.
-    num_dictionary_deltas : delta of dictionaries.
-    num_replaced_dictionaries : number of replaced dictionaries.
+    num_messages : number of messages
+    num_record_batches : number of record batches
+    num_dictionary_batches : number of dictionary batches
+    num_dictionary_deltas : delta of dictionaries
+    num_replaced_dictionaries : number of replaced dictionaries

Review Comment:
   ```suggestion
       num_messages : int
           Number of messages.
       num_record_batches : int
           Number of record batches.
       num_dictionary_batches : int
           Number of dictionary batches.
       num_dictionary_deltas : int
           Delta of dictionaries.
       num_replaced_dictionaries : int
           Number of replaced dictionaries.
   ```



##########
python/pyarrow/parquet/core.py:
##########
@@ -1309,7 +1313,7 @@ def get_index(self, key):
 
         Parameters
         ----------
-        key : The value for which we want to known the index.
+        key : The value for which we want to known the index

Review Comment:
   ```suggestion
           key : str or int
               The value for which we want to known the index.
   ```



##########
python/pyarrow/parquet/core.py:
##########
@@ -1222,6 +1225,7 @@ def read(self, columns=None, use_threads=True, 
partitions=None,
         Returns
         -------
         table : pyarrow.Table
+            The pierce as a pyarrow.Table

Review Comment:
   ```suggestion
               The piece as a pyarrow.Table.
   ```



##########
python/pyarrow/ipc.pxi:
##########
@@ -108,14 +108,14 @@ cdef class IpcReadOptions(_Weakrefable):
     ----------
     ensure_native_endian : bool
         Whether to convert incoming data to platform-native endianness.
-        Default is true.
+        Default is true

Review Comment:
   ```suggestion
   ```



##########
python/pyarrow/ipc.pxi:
##########
@@ -108,14 +108,14 @@ cdef class IpcReadOptions(_Weakrefable):
     ----------
     ensure_native_endian : bool

Review Comment:
   ```suggestion
       ensure_native_endian : bool, default True
   ```



-- 
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]

Reply via email to