Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 3b5deb0116abf2c94690d48af41b109bc8a4d559 authored by Ɓukasz Langa on 04 June 2019, 17:44:34 UTC
Python 3.8.0b1
Tip revision: 3b5deb0
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