Staging
v0.5.1
https://github.com/python/cpython
Revision ce34687d23bb68df1270728372f04ac7c80f3caa authored by Nick Coghlan on 22 September 2013, 09:38:16 UTC, committed by Nick Coghlan on 22 September 2013, 09:38:16 UTC
1 parent 31f477c
Raw File
Tip revision: ce34687d23bb68df1270728372f04ac7c80f3caa authored by Nick Coghlan on 22 September 2013, 09:38:16 UTC
Fix comment in test_gdb
Tip revision: ce34687
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