Staging
v0.5.1
https://github.com/python/cpython
Revision 26a0f87e28eb9c90446b23d73e78324f2d481a99 authored by Georg Brandl on 30 July 2010, 08:45:26 UTC, committed by Georg Brandl on 30 July 2010, 08:45:26 UTC
1 parent 2dfec55
Raw File
Tip revision: 26a0f87e28eb9c90446b23d73e78324f2d481a99 authored by Georg Brandl on 30 July 2010, 08:45:26 UTC
Document the "jump" command in pdb.__doc__, and add a version tag for "until X".
Tip revision: 26a0f87
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