[issue41187] Convert the _msi module to Argument Clinic

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

[issue41187] Convert the _msi module to Argument Clinic

2020-07-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 5d5c84ef78b19211671c2bfa68fe073485135eed by Serhiy Storchaka in branch 'master': bpo-41187: Convert the _msi module to Argument Clinic (GH-21264) https://github.com/python/cpython/commit/5d5c84ef78b19211671c2bfa68fe073485135eed -- _

[issue41187] Convert the _msi module to Argument Clinic

2020-07-01 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +20412 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21264 ___ Python tracker ___

[issue41187] Convert the _msi module to Argument Clinic

2020-07-01 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : The proposed PR converts the _msi module to Argument Clinic. * Fixes deprecation warnings with the "u" format. * Adds signatures. * Adds meaningful docstrings. -- components: Argument Clinic, Windows messages: 372769 nosy: larry, paul.moore, serhi