Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARROW-12240: [Python] Fix invalid-offsetof warning #10154

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions python/pyarrow/_csv.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ from pyarrow.lib cimport _Weakrefable

cdef class ConvertOptions(_Weakrefable):
cdef:
CCSVConvertOptions options
unique_ptr[CCSVConvertOptions] options

@staticmethod
cdef ConvertOptions wrap(CCSVConvertOptions options)


cdef class ParseOptions(_Weakrefable):
cdef:
CCSVParseOptions options
unique_ptr[CCSVParseOptions] options

@staticmethod
cdef ParseOptions wrap(CCSVParseOptions options)


cdef class ReadOptions(_Weakrefable):
cdef:
CCSVReadOptions options
unique_ptr[CCSVReadOptions] options
public object encoding

@staticmethod
Expand Down
Loading