Staging
v0.5.1
https://github.com/python/cpython
Revision 240cae7d1732029fc4015262a7ef9f154ebcc7b2 authored by Victor Stinner on 21 January 2014, 01:38:33 UTC, committed by Victor Stinner on 21 January 2014, 01:38:33 UTC
2 parent s 11da8e2 + 39d798e
Raw File
Tip revision: 240cae7d1732029fc4015262a7ef9f154ebcc7b2 authored by Victor Stinner on 21 January 2014, 01:38:33 UTC
(Merge 3.3) Issue #20311: Try to fix the unit test, use time.monotonic()
Tip revision: 240cae7
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