Staging
v0.5.1
https://github.com/python/cpython
Revision 9535aff9421f0a5639f6e4c4bb0f07a743ea8dba authored by Andrew Svetlov on 04 June 2019, 00:09:19 UTC, committed by Miss Islington (bot) on 04 June 2019, 00:09:19 UTC
1 parent eddef86
Raw File
Tip revision: 9535aff9421f0a5639f6e4c4bb0f07a743ea8dba authored by Andrew Svetlov on 04 June 2019, 00:09:19 UTC
Revert "bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (#13630)" (GH-13793)
Tip revision: 9535aff
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