https://github.com/python/cpython
Raw File
Tip revision: ba4217537c8a9f316921b8e3468bec86a9cab5f6 authored by Pablo Galindo on 03 May 2021, 19:33:17 UTC
Python 3.10.0b1
Tip revision: ba42175
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