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: nb_inplace_divide slot is missing in docs
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 3.1, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: donlorenzo, georg.brandl
Priority: normal Keywords: patch

Created on 2009-03-14 17:16 by donlorenzo, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
typeobj.rst.patch donlorenzo, 2009-03-14 17:16 adds nb_inplace_divide to the PyNumberMethods documentation.
Messages (2)
msg83595 - (view) Author: Lorenz Quack (donlorenzo) * Date: 2009-03-14 17:16
http://docs.python.org/c-api/typeobj.html#PyNumberMethods lists the
slots in the PyNumberMethods struct used to implement the Number
Protocol for extension types.

The entry for "binaryfunc nb_inplace_divide;" is missing from this listing.
It belongs between "binaryfunc nb_inplace_multiply;" and "binaryfunc
nb_inplace_remainder;"

There is a patch against r70371 of the trunk attached.
msg83644 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-03-15 21:46
Thanks, fixed in r70392.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49738
2009-03-15 21:46:07georg.brandlsetstatus: open -> closed

messages: + msg83644
resolution: fixed
2009-03-14 17:16:31donlorenzocreate