Staging
v0.5.1
https://github.com/python/cpython
Revision e20973926a2ec19c4b87e460dc6f0edb478ce352 authored by Serhiy Storchaka on 20 November 2016, 06:48:07 UTC, committed by Serhiy Storchaka on 20 November 2016, 06:48:07 UTC
2 parent s 3c38e06 + 144f77a
Raw File
Tip revision: e20973926a2ec19c4b87e460dc6f0edb478ce352 authored by Serhiy Storchaka on 20 November 2016, 06:48:07 UTC
Issue #28715: Added error checks for PyUnicode_AsUTF8().
Tip revision: e209739
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