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.

classification
Title: PEP 384 inconsistent with implementation
Type: behavior Stage: resolved
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, furkanonder, loewis, pitrou
Priority: normal Keywords:

Created on 2012-06-22 18:11 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg163449 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-06-22 18:11
In PEP 384, the PyType_Spec struct has a "const char *doc" that is not present in the implementation (Include/object.h).
msg163460 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2012-06-22 18:58
It's a bug in the PEP: users need to provide the module documentation through Py_tp_doc (which actually is mentioned in the PEP).

I'll fix it.
msg365507 - (view) Author: Furkan Onder (furkanonder) * Date: 2020-04-01 20:30
It fixed.
History
Date User Action Args
2022-04-11 14:57:31adminsetgithub: 59345
2020-04-01 20:36:17gvanrossumsetstatus: open -> closed
resolution: fixed
stage: needs patch -> resolved
2020-04-01 20:30:07furkanondersetnosy: + furkanonder
messages: + msg365507
2013-08-07 09:13:37belopolskylinkissue15787 dependencies
2012-06-22 18:58:03loewissetmessages: + msg163460
2012-06-22 18:11:27pitroucreate