Staging
v0.5.1
https://github.com/python/cpython
Revision 8493a04e0f5163362e2bfa7a113baa400db96110 authored by Serhiy Storchaka on 28 April 2013, 11:09:47 UTC, committed by Serhiy Storchaka on 28 April 2013, 11:09:47 UTC
such as was shipped with Centos 5 and Mac OS X 10.4.

This bug was already fixed in issue14572 for 2.7 only and then it was
backported back from 3.3 in issue17073.
1 parent 68915d7
Raw File
Tip revision: 8493a04e0f5163362e2bfa7a113baa400db96110 authored by Serhiy Storchaka on 28 April 2013, 11:09:47 UTC
Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
Tip revision: 8493a04
enumobject.h
#ifndef Py_ENUMOBJECT_H
#define Py_ENUMOBJECT_H

/* Enumerate Object */

#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyEnum_Type;
PyAPI_DATA(PyTypeObject) PyReversed_Type;

#ifdef __cplusplus
}
#endif

#endif /* !Py_ENUMOBJECT_H */
back to top