Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 69e3bda310f55816403e4c7fda42ab96d81c31be authored by Nick Coghlan on 28 July 2013, 11:06:50 UTC
Issue #15494: test.support is now a package rather than a module
Tip revision: 69e3bda
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