Staging
v0.5.1
https://github.com/python/cpython
Revision 21a2350a83d52969f20556cb64e2865203a4d082 authored by Zachary Ware on 02 November 2014, 03:34:09 UTC, committed by Zachary Ware on 02 November 2014, 03:34:09 UTC
1 parent 33db23f
Raw File
Tip revision: 21a2350a83d52969f20556cb64e2865203a4d082 authored by Zachary Ware on 02 November 2014, 03:34:09 UTC
Issue #17896: Move Windows external lib sources from .. to externals.
Tip revision: 21a2350
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