Staging
v0.5.1
https://github.com/python/cpython
Revision 3dfbaf51f0d90646e0414ddbd3b513ee8e5ffe9b authored by Serhiy Storchaka on 25 December 2017, 10:47:50 UTC, committed by GitHub on 25 December 2017, 10:47:50 UTC
1 parent 1b3029a
Raw File
Tip revision: 3dfbaf51f0d90646e0414ddbd3b513ee8e5ffe9b authored by Serhiy Storchaka on 25 December 2017, 10:47:50 UTC
bpo-32372: Move __debug__ optimization to the AST level. (#4925)
Tip revision: 3dfbaf5
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