Staging
v0.5.1
https://github.com/python/cpython
Revision 780151479f6f417838fc9e797864cf0b807604a9 authored by Mark Shannon on 23 October 2020, 12:05:48 UTC, committed by GitHub on 23 October 2020, 12:05:48 UTC
1 parent da6f098
Raw File
Tip revision: 780151479f6f417838fc9e797864cf0b807604a9 authored by Mark Shannon on 23 October 2020, 12:05:48 UTC
Add Mark Shannon to CODEOWNERS. (#22914)
Tip revision: 7801514
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