pitrou commented on code in PR #45818: URL: https://github.com/apache/arrow/pull/45818#discussion_r2106945684
########## python/pyarrow/scalar.pxi: ########## @@ -219,6 +220,8 @@ cdef class BooleanScalar(Scalar): cdef CBooleanScalar* sp = <CBooleanScalar*> self.wrapped.get() return sp.value if sp.is_valid else None + def __bool__(self): + return self.as_py() Review Comment: This is important because people expect most Python values to be usable in a boolean context, so `__bool__` should not fail. For example: ```python >>> bool(None) False ``` -- 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