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: PyNumber_Int is still mentioned in number protocol docs
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: mark.dickinson Nosy List: belopolsky, docs@python, mark.dickinson
Priority: normal Keywords:

Created on 2010-06-27 00:53 by belopolsky, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg108766 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2010-06-27 00:53
See http://docs.python.org/dev/py3k/c-api/number.html#PyNumber_Int

I also noticed some left-over references to intobject in the comments in the py3k tree:

Include/longobject.h:61:/* For use by intobject.c only */
Modules/xxmodule.c:13:   intobject.h for an example. */
Objects/floatobject.c:24:/* Special free list -- see comments for same code in intobject.c. */
Objects/frameobject.c:394:   integers are allocated in a special way -- see intobject.c).  When
PCbuild/pythoncore.vcproj:758:				RelativePath="..\Include\intobject.h"
msg108775 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2010-06-27 09:50
Thanks; I'll fix these.
msg108800 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2010-06-27 17:37
Removed PyNumber_Int from docs (and Data/refcounts.dat;  though I suspect that file is far from up-to-date) in r82288.
msg108802 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2010-06-27 18:19
References to intobject.h and intobject.c removed in r88289 and r88290.

Thanks!
History
Date User Action Args
2022-04-11 14:57:02adminsetgithub: 53335
2010-06-27 18:19:59mark.dickinsonsetstage: needs patch -> resolved
2010-06-27 18:19:47mark.dickinsonsetstatus: open -> closed
resolution: fixed
messages: + msg108802
2010-06-27 17:37:37mark.dickinsonsetmessages: + msg108800
2010-06-27 09:50:27mark.dickinsonsetassignee: docs@python -> mark.dickinson
messages: + msg108775
2010-06-27 00:53:46belopolskycreate