Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 0fe3be03926c3468ed4c10980d1a030c8ef4e37e authored by Miss Islington (bot) on 31 May 2018, 06:10:28 UTC
bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) (GH-7269)
Tip revision: 0fe3be0
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