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: Header and doc related to PyNumber_Divide and PyNumber_InPlaceDivide should be removed in py3k
Type: Stage:
Components: Documentation, Interpreter Core Versions: Python 3.0, Python 3.1, Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: bhy, georg.brandl
Priority: normal Keywords: patch

Created on 2009-05-26 12:07 by bhy, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
divide.patch bhy, 2009-05-26 12:07 removal entries related to PyNumber_Divide and PyNumber_InPlaceDivide
Messages (2)
msg88360 - (view) Author: Haoyu Bai (bhy) Date: 2009-05-26 12:07
As function implementation of PyNumber_Divide and PyNumber_InPlaceDivide
are already removed, there are still function declaration in abstract.h,
and also entries in document:
http://docs.python.org/dev/py3k/c-api/number.html?highlight=pynumber_divide

I got some symbol undefined problem because of this. Please see the
attached patch for fixing either the header and doc.

Thank you!
msg88373 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-05-26 16:43
Thanks, fixed in r72941.
History
Date User Action Args
2022-04-11 14:56:49adminsetgithub: 50365
2009-05-26 16:43:23georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg88373
2009-05-26 12:07:04bhycreate