Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 46e4b07a8120ca0a09a03c7fceaa6f914acf47d5 authored by Guido van Rossum on 07 October 1994, 09:57:59 UTC
moved my examples to subdir guido
Tip revision: 46e4b07
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