lidavidm commented on a change in pull request #10230:
URL: https://github.com/apache/arrow/pull/10230#discussion_r630423088
##########
File path: python/pyarrow/_csv.pxd
##########
@@ -44,3 +44,11 @@ cdef class ReadOptions(_Weakrefable):
@staticmethod
cdef ReadOptions wrap(CCSVReadOptions options)
+
+
+cdef class WriteOptions(_Weakrefable):
+ cdef:
+ unique_ptr[CCSVWriteOptions] options
Review comment:
Mostly for consistency with the other options, and in case we add things
to WriteOptions that would make it a non-standard layout type, in which case
Cython will generate a lot of compiler warnings as it relies on sizeof.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]