Staging
v0.5.1
https://github.com/python/cpython
Revision c5fc15685202cda73f7c3f5c6f299b0945f58508 authored by Pablo Galindo on 22 April 2020, 22:29:27 UTC, committed by GitHub on 22 April 2020, 22:29:27 UTC
Co-authored-by: Guido van Rossum <guido@python.org>
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
1 parent a81849b
Raw File
Tip revision: c5fc15685202cda73f7c3f5c6f299b0945f58508 authored by Pablo Galindo on 22 April 2020, 22:29:27 UTC
bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)
Tip revision: c5fc156
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