Staging
v0.8.1
https://github.com/python/cpython
Revision 07c6e7168919c275e47fa35c741413270d3d80fd authored by Brett Cannon on 24 August 2012, 17:05:09 UTC, committed by Brett Cannon on 24 August 2012, 17:05:09 UTC
1 parent 491b1dc
Raw File
Tip revision: 07c6e7168919c275e47fa35c741413270d3d80fd authored by Brett Cannon on 24 August 2012, 17:05:09 UTC
Issue #15778: Coerce ImportError.args to a string when it isn't
Tip revision: 07c6e71
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