Staging
v0.5.1
https://github.com/python/cpython
Revision ac4202ee4d53d6c0a07109e03795b70d91edbbb3 authored by Victor Stinner on 17 June 2019, 13:23:52 UTC, committed by GitHub on 17 June 2019, 13:23:52 UTC
Mention explicitly that PyObject_CallXXX() functions raise an
exception an failure.

(cherry picked from commit 1ce2656f13e726b3b99d4c968926908cff1f460a)
1 parent 0040903
Raw File
Tip revision: ac4202ee4d53d6c0a07109e03795b70d91edbbb3 authored by Victor Stinner on 17 June 2019, 13:23:52 UTC
bpo-37194: Complete PyObject_CallXXX() docs (GH-14156) (GH-14158)
Tip revision: ac4202e
bltinmodule.h
#ifndef Py_BLTINMODULE_H
#define Py_BLTINMODULE_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyFilter_Type;
PyAPI_DATA(PyTypeObject) PyMap_Type;
PyAPI_DATA(PyTypeObject) PyZip_Type;

#ifdef __cplusplus
}
#endif
#endif /* !Py_BLTINMODULE_H */
back to top