Staging
v0.8.1
Revision 920ec4b7763d64b3742d7ddd339ad11cdbec62e9 authored by Miss Islington (bot) on 24 August 2019, 10:22:14 UTC, committed by GitHub on 24 August 2019, 10:22:14 UTC
(cherry picked from commit 05f2d84cae4ba1ff15b7a1d0347305393f4bdcc5)

Co-authored-by: Minmin Gong <gongminmin@msn.com>
1 parent 076d0b9
Raw File
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