edponce commented on a change in pull request #12055: URL: https://github.com/apache/arrow/pull/12055#discussion_r839828151
########## File path: python/pyarrow/table.pxi ########## @@ -209,19 +209,14 @@ cdef class ChunkedArray(_PandasConvertible): ------- value : Scalar (index) or ChunkedArray (slice) """ - if isinstance(key, slice): + + if PySlice_Check(key): Review comment: Changed to use `isinstance` in all cases. -- 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