Commits


Antoine Pitrou authored and Joris Van den Bossche committed a5b4ff7d08d
ARROW-14766: [Python] Mark compute function arguments positional-only Indicate to the user, in the generated function signature, that the given arguments cannot be passed by name. Before: ``` Signature: pc.add(x, y, *, memory_pool=None) Docstring: Add the arguments element-wise. [...] ``` After: ``` Signature: pc.add(x, y, /, *, memory_pool=None) Docstring: Add the arguments element-wise. [...] ``` Closes #11951 from pitrou/ARROW-1476-compute-positional-only Authored-by: Antoine Pitrou <antoine@python.org> Signed-off-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>