amol- commented on a change in pull request #11028:
URL: https://github.com/apache/arrow/pull/11028#discussion_r722034554



##########
File path: python/pyarrow/array.pxi
##########
@@ -996,15 +996,19 @@ cdef class Array(_PandasConvertible):
         type_format = object.__repr__(self)
         return '{0}\n{1}'.format(type_format, str(self))
 
-    def to_string(self, int indent=0, int window=10):
+    def to_string(self, int indent=0, int window=10,
+                  c_bool skip_new_lines=False):

Review comment:
       👍 

##########
File path: python/pyarrow/table.pxi
##########
@@ -63,18 +63,22 @@ cdef class ChunkedArray(_PandasConvertible):
         type_format = object.__repr__(self)
         return '{0}\n{1}'.format(type_format, str(self))
 
-    def to_string(self, int indent=0, int window=10):
+    def to_string(self, int indent=0, int window=10,
+                  c_bool skip_new_lines=False):

Review comment:
       :+1:




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