[issue40178] Convert the remaining os funtions to Argument Clinic

2020-05-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40178] Convert the remaining os funtions to Argument Clinic

2020-04-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2b5603140c09766a7d4e8243a70d7144f684f6f9 by Serhiy Storchaka in branch 'master': bpo-40178: Convert the remaining os functions to Argument Clinic. (GH-19360) https://github.com/python/cpython/commit/2b5603140c09766a7d4e8243a70d7144f684f6f9

[issue40178] Convert the remaining os funtions to Argument Clinic

2020-04-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: #37206 changed the signature "pop(self, key, default=None, /)" back to "D.pop(k[,d]) -> v", taken from dict.pop.__doc__. However, the incorrect version that got reverted correctly added the positional-only indicator '/'. Docstrings with signatures for

[issue40178] Convert the remaining os funtions to Argument Clinic

2020-04-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- components: +Argument Clinic nosy: +larry ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40178] Convert the remaining os funtions to Argument Clinic

2020-04-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The problems which prevented their conversions before (in issue20170): 1. os.sendfile() had parameter names conflicting with Python keywords. Was solved in issue38378. 2. os.get_terminal_size() has an optional argument without default value. It was

[issue40178] Convert the remaining os funtions to Argument Clinic

2020-04-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +18722 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19360 ___ Python tracker

[issue40178] Convert the remaining os funtions to Argument Clinic

2020-04-04 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : The proposed PR converts os.getgrouplist(), os.initgroups(), os.sendfile() and os.get_terminal_size() to Argument Clinic. -- components: Extension Modules messages: 365762 nosy: serhiy.storchaka priority: normal severity: normal status: open