Staging
v0.5.1
https://github.com/python/cpython
Revision abb88023896f545b18d20c7d0d5934b11230a12f authored by Ned Deily on 30 May 2018, 23:50:49 UTC, committed by Ned Deily on 30 May 2018, 23:50:49 UTC
1 parent 0e823c6
Raw File
Tip revision: abb88023896f545b18d20c7d0d5934b11230a12f authored by Ned Deily on 30 May 2018, 23:50:49 UTC
3.7.0b5
Tip revision: abb8802
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