raulcd commented on code in PR #48994:
URL: https://github.com/apache/arrow/pull/48994#discussion_r2736255815
##########
python/pyarrow/table.pxi:
##########
@@ -2105,6 +2116,17 @@ cdef class _Tabular(_PandasConvertible):
"""
return (self.num_rows, self.num_columns)
+ @property
+ def personal_data(self):
+ """
+ Whether the object contains personal data.
+
+ Returns
+ -------
+ personal_data : bool
+ """
+ return self.schema.personal_data
+
Review Comment:
this seems completely unrelated.
##########
dev/release/download_rc_binaries.py:
##########
Review Comment:
the commit updating this shouldn't be part of this PR, right?
--
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]