Staging
v0.5.1
https://github.com/python/cpython
Revision a072de14be1e8cd992404f300f0104fccedecaa9 authored by Georg Brandl on 06 October 2013, 18:46:08 UTC, committed by Georg Brandl on 06 October 2013, 18:46:08 UTC
1 parent 29fc4bf
Raw File
Tip revision: a072de14be1e8cd992404f300f0104fccedecaa9 authored by Georg Brandl on 06 October 2013, 18:46:08 UTC
Extending example: use Py_RETURN_NONE
Tip revision: a072de1
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