https://github.com/python/cpython
Raw File
Tip revision: 9471106fd5b47418ffd2f90c6b729f58698f573e authored by Pablo Galindo on 13 January 2022, 19:36:27 UTC
Python 3.11.0a4
Tip revision: 9471106
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