[issue11173] Undocumented public APIs in Python 3.2

2021-10-19 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue11173] Undocumented public APIs in Python 3.2

2021-10-19 Thread STINNER Victor
STINNER Victor added the comment: > I think this is complete, so I'll close this if nobody will object. I concur, please close it ;-) -- status: pending -> open ___ Python tracker

[issue11173] Undocumented public APIs in Python 3.2

2021-10-19 Thread Irit Katriel
Irit Katriel added the comment: PyAST_CompileEx was removed in 3.10 and PyType_FromSpec, PyStructSequence_* are documented now. PyThread_acquire_lock_timed is not, but I understand this is deliberate. I think this is complete, so I'll close this if nobody will object. -- nosy:

[issue11173] Undocumented public APIs in Python 3.2

2017-02-14 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: PyEval_CallObject wasn't removed. It's a macro now. And it was documented for a long time in Extending Python... in fact, the documentation was removed, not the API :-) -- ___ Python tracker

[issue11173] Undocumented public APIs in Python 3.2

2011-11-11 Thread Eli Bendersky
Changes by Eli Bendersky eli...@gmail.com: -- nosy: -eli.bendersky ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11173 ___ ___ Python-bugs-list

[issue11173] Undocumented public APIs in Python 3.2

2011-02-10 Thread Marc-Andre Lemburg
New submission from Marc-Andre Lemburg m...@egenix.com: Mark Shannon on python-dev: The following API functions were removed from 3.1.3: PyAST_Compile PyCObject_AsVoidPtr PyCObject_FromVoidPtr PyCObject_FromVoidPtrAndDesc PyCObject_GetDesc PyCObject_Import PyCObject_SetVoidPtr

[issue11173] Undocumented public APIs in Python 3.2

2011-02-10 Thread Eli Bendersky
Changes by Eli Bendersky eli...@gmail.com: -- nosy: +eli.bendersky ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11173 ___ ___ Python-bugs-list

[issue11173] Undocumented public APIs in Python 3.2

2011-02-10 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: PyErr_WarnFormat is already documented in Doc/c-api/exceptions.rst PyImport_ExecCodeModuleWithPathnames is already documented in Doc/c-api/import.rst PyModule_GetFilenameObject is already documented in Doc/c-api/module.rst

[issue11173] Undocumented public APIs in Python 3.2

2011-02-10 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Py_UNICODE_strcat, Py_UNICODE_strncmp, Py_UNICODE_strrchr See issue #10435 (with a patch) for these functions. -- ___ Python tracker rep...@bugs.python.org

[issue11173] Undocumented public APIs in Python 3.2

2011-02-10 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: PyThread_acquire_lock_timed It's on purpose that I didn't document this one. I'm not sure the PyThread_ APIs should be used by third-party extensions; so I'd prefer to hear about potential users before starting documenting it (and being tied

[issue11173] Undocumented public APIs in Python 3.2

2011-02-10 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: In fact, most of the functions are documented. (Mark S. apparently referred to the What's new document when talking about documented functions.) Missing are: PyAST_CompileEx (because PyAST_Compile wasn't documented either) PyStructSequence_*