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 Decorater
Recipients Decorater, docs@python, serhiy.storchaka
Date 2017-05-17.19:15:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495048528.02.0.376063523281.issue30390@psf.upfronthosting.co.za>
In-reply-to
Content
Still it does look the functions lited in the second comment are undocumented.

https://docs.python.org/3/search.html?q=PyClassMethodDescr_Type
https://docs.python.org/3/search.html?q=PyClassMethod_New&check_keywords=yes&area=default

However on the last function I did find 1 thing However it was not what I was looking for. What I actually was looking for was the args for the 3 functions and description on what it does and all that similar to how this function is documented:

```
PyObject* PyObject_CallObject(PyObject *callable_object, PyObject *args)
Return value: New reference.
Call a callable Python object callable_object, with arguments given by the tuple args. If no arguments are needed, then args may be NULL. Returns the result of the call on success, or NULL on failure. This is the equivalent of the Python expression callable_object(*args).

```

This is actually the reason why the issue was opened as the functions was not documented like this.
History
Date User Action Args
2017-05-17 19:15:28Decoratersetrecipients: + Decorater, docs@python, serhiy.storchaka
2017-05-17 19:15:28Decoratersetmessageid: <1495048528.02.0.376063523281.issue30390@psf.upfronthosting.co.za>
2017-05-17 19:15:28Decoraterlinkissue30390 messages
2017-05-17 19:15:27Decoratercreate