Staging
v0.5.1
https://github.com/python/cpython
Revision 69e3bda310f55816403e4c7fda42ab96d81c31be authored by Nick Coghlan on 28 July 2013, 11:06:50 UTC, committed by Nick Coghlan on 28 July 2013, 11:06:50 UTC
Also including this change in 3.3 to help avoid spurious conflicts
between the two most active branches.

(Initial patch by Indra Talip)
1 parent 725d9dd
Raw File
Tip revision: 69e3bda310f55816403e4c7fda42ab96d81c31be authored by Nick Coghlan on 28 July 2013, 11:06:50 UTC
Issue #15494: test.support is now a package rather than a module
Tip revision: 69e3bda
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