Staging
v0.5.1
https://github.com/python/cpython
Revision ac577d7d0bd27a69921ced14c09172235ceebab5 authored by Victor Stinner on 28 November 2017, 20:33:20 UTC, committed by GitHub on 28 November 2017, 20:33:20 UTC
1 parent 4d193bc
Raw File
Tip revision: ac577d7d0bd27a69921ced14c09172235ceebab5 authored by Victor Stinner on 28 November 2017, 20:33:20 UTC
bpo-32154: Remove asyncio.windows_utils.socketpair (#4609)
Tip revision: ac577d7
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