Staging
v0.5.1
https://github.com/python/cpython
Revision 41b2404dabfdc7b470b991b1a8b4a945feaa5f1f authored by Sandro Tosi on 21 January 2012, 09:59:37 UTC, committed by Sandro Tosi on 21 January 2012, 09:59:37 UTC
1 parent 3800ea9
Raw File
Tip revision: 41b2404dabfdc7b470b991b1a8b4a945feaa5f1f authored by Sandro Tosi on 21 January 2012, 09:59:37 UTC
fix typo; thanks to Justin Watt from docs@
Tip revision: 41b2404
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