Staging
v0.5.1
https://github.com/python/cpython
Revision 558aa30f7971e087c4a00b1f49cc2ef3195c01ca authored by Yury Selivanov on 23 December 2017, 17:44:29 UTC, committed by GitHub on 23 December 2017, 17:44:29 UTC
1 parent c0919c2
Raw File
Tip revision: 558aa30f7971e087c4a00b1f49cc2ef3195c01ca authored by Yury Selivanov on 23 December 2017, 17:44:29 UTC
bpo-32357: Fix tests in refleak mode (#4989)
Tip revision: 558aa30
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