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 gaborjbernat
Recipients bskinn, docs@python, gaborjbernat, lukasz.langa
Date 2021-10-07.00:54:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1633568073.66.0.693187610783.issue45391@roundup.psfhosted.org>
In-reply-to
Content
Here's a gist where I managed to detect roughly 140 errors (some looks like potential false positive, so likely the real number is more around 100):

https://gist.github.com/gaborbernat/5360badab2125b3f81a3bcbce0e94c2a#file-found_issues-output-L1

This does make a few concessions:
- ignores the difference between function and method; way to many functions are documented as methods and vice-versa to disallow this (or would be a major overhaul)
- https://docs.python.org/3/c-api/structures.html?highlight=meth_class#METH_VARARGS is documented under python domain but IMHO should be C
- https://docs.python.org/3/c-api/typeobj.html?highlight=py_tpflags_base_exc_subclass#c.PyTypeObject.tp_flags is documented under python domain but IMHO should be C
- does not clarifies where to type classes goes - they seem to be a weird in-between a method and a class, satisfying neither - see related discussion on topic from https://bugs.python.org/issue41973
History
Date User Action Args
2021-10-07 00:54:33gaborjbernatsetrecipients: + gaborjbernat, docs@python, lukasz.langa, bskinn
2021-10-07 00:54:33gaborjbernatsetmessageid: <1633568073.66.0.693187610783.issue45391@roundup.psfhosted.org>
2021-10-07 00:54:33gaborjbernatlinkissue45391 messages
2021-10-07 00:54:33gaborjbernatcreate