Staging
v0.5.1
https://github.com/python/cpython
Revision 8c08518c255747a06d00479f21087f0c934d0ad6 authored by Miss Islington (bot) on 09 January 2020, 17:19:59 UTC, committed by GitHub on 09 January 2020, 17:19:59 UTC
(cherry picked from commit ed367815eeb9329c48a86a8a7fa3186e27a10f2c)

Co-authored-by: Steve Dower <steve.dower@python.org>
1 parent 20c9902
Raw File
Tip revision: 8c08518c255747a06d00479f21087f0c934d0ad6 authored by Miss Islington (bot) on 09 January 2020, 17:19:59 UTC
bpo-25172: Reduce scope of crypt import tests (GH-17881)
Tip revision: 8c08518
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