pitrou opened a new pull request #11951:
URL: https://github.com/apache/arrow/pull/11951


   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.
   [...]
   ```


-- 
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]


Reply via email to