Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 1e7193bd027a5a4aa1a387e3f201a3e465c25f01 authored by Miss Islington (bot) on 17 September 2018, 13:09:39 UTC
bpo-33216: Improve the documentation for CALL_FUNCTION_* (GH-8338) (GH-8784)
Tip revision: 1e7193b
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