Staging
v0.8.1
https://github.com/python/cpython
Revision beb798cad6a6013d5a606ea0cd19640b35b468ea authored by Ned Deily on 12 September 2016, 15:04:12 UTC, committed by Ned Deily on 12 September 2016, 15:04:12 UTC
1 parent 0112625
Raw File
Tip revision: beb798cad6a6013d5a606ea0cd19640b35b468ea authored by Ned Deily on 12 September 2016, 15:04:12 UTC
Version bump for 3.6.0b1
Tip revision: beb798c
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