Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 7bf069b6110278102c8f4719975a5eb5a5af25f9 authored by Victor Stinner on 20 March 2020, 07:23:26 UTC
bpo-40019: Skip test_gdb if Python was optimized (GH-19081)
Tip revision: 7bf069b
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