https://github.com/python/cpython
Revision 574547a75c79b506261520c5773ae08a1dcea1b9 authored by Jason R. Coombs on 15 April 2020, 17:55:43 UTC, committed by GitHub on 15 April 2020, 17:55:43 UTC
1 parent 5eca75d
Raw File
Tip revision: 574547a75c79b506261520c5773ae08a1dcea1b9 authored by Jason R. Coombs on 15 April 2020, 17:55:43 UTC
Clean up compatibility code in importlib fixtures (#19156)
Tip revision: 574547a
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