Staging
v0.5.1
Revision bc30db1ee70b6708aa436868e548aef919567448 authored by Miss Skeleton (bot) on 27 October 2019, 02:38:26 UTC, committed by GitHub on 27 October 2019, 02:38:26 UTC
(cherry picked from commit e31a79a5b44357b409d71949dc5308889970f9ab)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent 849b1b9
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