Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 3d678e3b12b376dbb1f65fdff11b0c14bcc93bc6 authored by Benjamin Peterson on 04 May 2014, 00:18:50 UTC
use with blocks to make sure files are closed
Tip revision: 3d678e3
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