[issue30950] Convert round() to Arument Clinic

2017-11-15 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- dependencies: -Documentation for round() is incorrect. resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue30950] Convert round() to Arument Clinic

2017-11-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset aca7f574b06c72c85a5e3e4b16a8a5e384a7c4a8 by Serhiy Storchaka in branch 'master': bpo-30950: Convert round() to Argument Clinic. (#2740)

[issue30950] Convert round() to Arument Clinic

2017-07-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Documentation for round() is incorrect. nosy: +mark.dickinson, rhettinger ___ Python tracker

[issue30950] Convert round() to Arument Clinic

2017-07-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +2800 ___ Python tracker ___ ___

[issue30950] Convert round() to Arument Clinic

2017-07-17 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: When the builtins module was converted to Argument Clinic, round() was omitted because existing signature of round() wasn't supported with the inspect module. Now round() supports None as the value for the ndigits arguments, and this is the default value.