Staging
v0.8.1
https://github.com/python/cpython
Revision d20046622a3e5c687d03913e0632ca1ed690e1b6 authored by Georg Brandl on 16 March 2007, 08:33:51 UTC, committed by Georg Brandl on 16 March 2007, 08:33:51 UTC
1 parent 7d9ac78
Raw File
Tip revision: d20046622a3e5c687d03913e0632ca1ed690e1b6 authored by Georg Brandl on 16 March 2007, 08:33:51 UTC
RFE #1670167: fix in isinstance() docs.
Tip revision: d200466
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