Staging
v0.8.1
https://github.com/python/cpython
Revision 1cb0cb2fcdc83a6caa871104a622d1217ca034a3 authored by R David Murray on 27 February 2013, 13:57:09 UTC, committed by R David Murray on 27 February 2013, 13:57:09 UTC
1 parent 5f79409
Raw File
Tip revision: 1cb0cb2fcdc83a6caa871104a622d1217ca034a3 authored by R David Murray on 27 February 2013, 13:57:09 UTC
#17296: backport fix for issue 1692335, naive exception pickling.
Tip revision: 1cb0cb2
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