This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients larry, serhiy.storchaka
Date 2017-11-03.12:43:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1509713002.57.0.213398074469.issue20171@psf.upfronthosting.co.za>
In-reply-to
Content
PR 4251 converts most of functions in the _curses and _curses_panel modules (around 130 functions) to Argument Clinic. Many functions didn't have docstrings, the PR adds them. You can test new signatures and docstrings by the following commands:

./python -m pydoc curses
./python -m pydoc curses.window
./python -m pydoc curses.panel
./python -m pydoc curses.panel.panel

3 functions can't be converted. The initial versions of Argument Clinic supported such declarations, but now it doesn't support them. Will try to fix Argument Clinic in other issue. Yet 35 generated window methods have not been converted because I'm too tired by this patch. They will be converted by other patches.

I tried to make new and existing docstrings short and clear, but I think many docstrings still need editing.
History
Date User Action Args
2017-11-03 12:43:22serhiy.storchakasetrecipients: + serhiy.storchaka, larry
2017-11-03 12:43:22serhiy.storchakasetmessageid: <1509713002.57.0.213398074469.issue20171@psf.upfronthosting.co.za>
2017-11-03 12:43:22serhiy.storchakalinkissue20171 messages
2017-11-03 12:43:22serhiy.storchakacreate