Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 206853035e2c14bdba27cd1cdac0cbb21d3c6f69 authored by Larry Hastings on 08 February 2015, 00:04:29 UTC
Fix a copyright notice that still said 2014.
Tip revision: 2068530
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