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: Reference to missing(?) function in Extending & Embedding Document
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: aydt, georg.brandl
Priority: normal Keywords:

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

Messages (2)
msg83134 - (view) Author: Ruth Aydt (aydt) Date: 2009-03-04 21:21
Section 1.6 "Calling Python Functions from C" in the Extending and
Embedding Python, 2.6.1 guide talks about "PyEval_CallObject".  But, I
can't find it anywhere else in the 2.6 doc set.   

I did see in PEP 3100 that the function is to be removed in 3.0.  I
suspect section 1.6 in doc needs to be updated to use a different
function in the example & text.
msg84835 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-03-31 16:51
The function is there, but not documented, so the examples are valid. I
now changed them to refer to PyObject_Call[Object] which are documented
in r70836.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49667
2009-03-31 16:51:56georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg84835
2009-03-04 21:21:58aydtcreate