jorisvandenbossche commented on code in PR #43795:
URL: https://github.com/apache/arrow/pull/43795#discussion_r1743240130
##########
python/pyarrow/table.pxi:
##########
@@ -1410,6 +1439,20 @@ cdef class ChunkedArray(_PandasConvertible):
self.init(c_chunked_array)
return self
+ @property
+ def is_cpu(self):
+ """
+ Whether all chunks in the ChunkedArray are CPU-accessible.
+ """
+ if self._init_is_cpu == False:
Review Comment:
```suggestion
if not self._init_is_cpu:
```
--
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]