Staging
v0.5.1
https://github.com/python/cpython
Revision 3070b71e5eedf62e49b8e7dedab75742a5f67ece authored by INADA Naoki on 25 December 2017, 17:03:24 UTC, committed by GitHub on 25 December 2017, 17:03:24 UTC
1 parent 0cf16f9
Raw File
Tip revision: 3070b71e5eedf62e49b8e7dedab75742a5f67ece authored by INADA Naoki on 25 December 2017, 17:03:24 UTC
bpo-32422: Reduce lru_cache memory usage (GH-5008)
Tip revision: 3070b71
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