Staging
v0.5.1
https://github.com/python/cpython
Revision 60532bd6b6337925c46dcc85244773ee214a9da9 authored by Éric Araujo on 15 December 2010, 21:07:22 UTC, committed by Éric Araujo on 15 December 2010, 21:07:22 UTC
1 parent 4433a5f
Raw File
Tip revision: 60532bd6b6337925c46dcc85244773ee214a9da9 authored by Éric Araujo on 15 December 2010, 21:07:22 UTC
Fix build_ext with VS 8.0. Patch by Hirokazu Yamamoto (#9558).
Tip revision: 60532bd
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