danepitkin commented on code in PR #33810: URL: https://github.com/apache/arrow/pull/33810#discussion_r1087075791
########## python/pyarrow/table.pxi: ########## @@ -4708,6 +4711,61 @@ cdef class Table(_PandasConvertible): return table + def drop(self, columns): + """ + Drop one or more columns and return a new table. + + Alias of Table.drop_columns for backwards compatibility. + + Parameters Review Comment: Thanks! I tried this at first, but thought I was getting a document build error. I probably was just building it wrong 😬 haha. I'll do this because I very much dislike duplication. -- 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