Staging
v0.5.1
https://github.com/python/cpython
Revision 0ef96c2b2a291c9d2d9c0ba42bbc1900a21e65f3 authored by Victor Stinner on 07 December 2020, 10:56:20 UTC, committed by GitHub on 07 December 2020, 10:56:20 UTC
1 parent c266736
Raw File
Tip revision: 0ef96c2b2a291c9d2d9c0ba42bbc1900a21e65f3 authored by Victor Stinner on 07 December 2020, 10:56:20 UTC
bpo-30459: Cast the result of PyCell_SET to void (GH-23654)
Tip revision: 0ef96c2
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