Staging
v0.5.1
https://github.com/python/cpython
Revision 2f47fb00211ab99924ea5ae2d576bc3c6ba8952f authored by Zachary Ware on 09 August 2016, 21:20:41 UTC, committed by Zachary Ware on 09 August 2016, 21:20:41 UTC
1 parent 085e806
Raw File
Tip revision: 2f47fb00211ab99924ea5ae2d576bc3c6ba8952f authored by Zachary Ware on 09 August 2016, 21:20:41 UTC
Correct signatures for a couple of logging handlers
Tip revision: 2f47fb0
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