Staging
v0.5.1
https://github.com/python/cpython
Revision d9ca66f2b2073529c335cc953d202f4068a7a870 authored by Georg Brandl on 17 March 2006, 19:04:15 UTC, committed by Georg Brandl on 17 March 2006, 19:04:15 UTC
1 parent d1442b4
Raw File
Tip revision: d9ca66f2b2073529c335cc953d202f4068a7a870 authored by Georg Brandl on 17 March 2006, 19:04:15 UTC
Backport: Fix missing NULL checks after PyTuple_New, PyList_New, PyDict_New
Tip revision: d9ca66f
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