Staging
v0.5.1
https://github.com/python/cpython
Revision 7d5285ec79ef0f907ade0f110a008694441a97e3 authored by Georg Brandl on 26 May 2009, 16:43:13 UTC, committed by Georg Brandl on 26 May 2009, 16:43:13 UTC
1 parent c38a000
Raw File
Tip revision: 7d5285ec79ef0f907ade0f110a008694441a97e3 authored by Georg Brandl on 26 May 2009, 16:43:13 UTC
#6115: remove entries for the already removed PyNumber_Divide and PyNumber_InPlaceDivide from the header and the docs.
Tip revision: 7d5285e
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