Staging
v0.5.1
https://github.com/python/cpython
Revision 3a27b0857ef6d35911509eef88e567663bb0a0b6 authored by Benjamin Peterson on 16 August 2016, 05:01:41 UTC, committed by Benjamin Peterson on 16 August 2016, 05:01:41 UTC
1 parent 4f97651
Raw File
Tip revision: 3a27b0857ef6d35911509eef88e567663bb0a0b6 authored by Benjamin Peterson on 16 August 2016, 05:01:41 UTC
do not decref value borrowed from list (closes #27774)
Tip revision: 3a27b08
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