Staging
v0.5.1
Revision f6255a2ccb55a63194caf698f471c803c08be359 authored by Zackery Spytz on 26 October 2020, 05:37:16 UTC, committed by GitHub on 26 October 2020, 05:37:16 UTC
(cherry picked from commit 54636355805dd2877bb54fbad8d967e1ddd8b553)
1 parent 77a9ef1
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