Staging
v0.8.1
Revision c73f6dab11030c9f0071d25c1636184c909696e1 authored by Gregory P. Smith on 15 March 2012, 01:10:37 UTC, committed by Gregory P. Smith on 15 March 2012, 01:10:37 UTC
using --with-system-expat working when the system expat does not have
salted hash support.
1 parent a5d729a
Raw File
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