Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: ee2ff1a335b0a59f445959178c5d2a9802c5b3e4 authored by Miss Islington (bot) on 18 September 2018, 06:27:27 UTC
Fix syntax error on Asyncio example in doc (GH-9387) (GH-9388)
Tip revision: ee2ff1a
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