Staging
v0.5.1
https://github.com/python/cpython
Revision 9bab5249aa43b0be22c029e6e0877fb300f21c86 authored by Ezio Melotti on 03 August 2010, 08:32:53 UTC, committed by Ezio Melotti on 03 August 2010, 08:32:53 UTC
1 parent 8a078d5
Raw File
Tip revision: 9bab5249aa43b0be22c029e6e0877fb300f21c86 authored by Ezio Melotti on 03 August 2010, 08:32:53 UTC
Fix deprecation warnings in test_commands.py
Tip revision: 9bab524
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