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 ammar2
Recipients Anthony Sottile, ammar2
Date 2019-09-29.01:58:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1569722289.83.0.916477727769.issue38312@roundup.psfhosted.org>
In-reply-to
Content
> I'd like to help with this, but I don't even know where to start with argumentclinic -- any points would be greatly appreciated

Are you asking about argumentclinic in general or something specific to this bug? If it's something specific feel free to ignore the following:

You can find a basic tutorial on argumentclinic here https://docs.python.org/3/howto/clinic.html#basic-concepts-and-usage

Essentially, you'll be adding something along these lines into _cursesmodule.c

/*[clinic input]
_curses.set_escdelay
    size: int
        bla bla description for size.
    /

One line description.

Extended description. Spanning over
multiple lines.
[clinic start generated code]*/

after which you can run `python3 Tools/clinic/clinic.py _cursesmodule.c` which will update the file and place the stub for the method in there.
History
Date User Action Args
2019-09-29 01:58:09ammar2setrecipients: + ammar2, Anthony Sottile
2019-09-29 01:58:09ammar2setmessageid: <1569722289.83.0.916477727769.issue38312@roundup.psfhosted.org>
2019-09-29 01:58:09ammar2linkissue38312 messages
2019-09-29 01:58:09ammar2create