Staging
v0.5.1
https://github.com/python/cpython
Revision 196f1eb6adcfc6a7239330ef508b8bf9dff9940f authored by Hai Shi on 11 March 2020, 16:56:08 UTC, committed by GitHub on 11 March 2020, 16:56:08 UTC
1 parent aa0c080
Raw File
Tip revision: 196f1eb6adcfc6a7239330ef508b8bf9dff9940f authored by Hai Shi on 11 March 2020, 16:56:08 UTC
bpo-1635741: Fix refleaks of time module error handling (GH-18486)
Tip revision: 196f1eb
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