pitrou commented on a change in pull request #10802: URL: https://github.com/apache/arrow/pull/10802#discussion_r685872101
########## File path: python/pyarrow/compute.py ########## @@ -590,6 +590,38 @@ def take(data, indices, *, boundscheck=True, memory_pool=None): return call_function('take', [data, indices], options, memory_pool) +def dropnull(data, *, memory_pool=None): Review comment: The explicit functions are mostly historical (auto-generation became less and less limited over time), but in some cases they allow for more user-friendly signatures. If your explicit function has the same signature as the auto-generated one, then it's basically useless :-) -- 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