EnricoMi commented on code in PR #44279: URL: https://github.com/apache/arrow/pull/44279#discussion_r2079149055
########## python/pyarrow/ipc.pxi: ########## @@ -48,6 +48,26 @@ cdef CMetadataVersion _unwrap_metadata_version( raise ValueError("Not a metadata version: " + repr(version)) +cpdef enum Alignment: + Any = <int8_t> CAlignment_Any + DataTypeSpecific = <int8_t> CAlignment_DataTypeSpecific + At64Byte = <int8_t> CAlignment_64Byte + + +cdef object _wrap_alignment(CAlignment alignment): + return Alignment(<char> alignment) Review Comment: Sure. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org