Staging
v0.5.1
https://github.com/python/cpython
Revision df5d884defc8f1a94013ff9beb493f1428bd55b5 authored by Miss Islington (bot) on 09 December 2018, 07:11:31 UTC, committed by GitHub on 09 December 2018, 07:11:31 UTC
(cherry picked from commit ac218bc5dbfabbd61c76ce8a17de088611e21981)

Co-authored-by: Ned Deily <nad@python.org>
1 parent 23a98ab
Raw File
Tip revision: df5d884defc8f1a94013ff9beb493f1428bd55b5 authored by Miss Islington (bot) on 09 December 2018, 07:11:31 UTC
bpo-33725: skip test_multiprocessing_fork on macOS (GH-11043)
Tip revision: df5d884
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