Staging
v0.5.1
https://github.com/python/cpython
Revision cd52023e6fedbe4d5a07b4ded8bfbb4939e66953 authored by Andrew M. Kuchling on 06 September 2008, 20:28:01 UTC, committed by Andrew M. Kuchling on 06 September 2008, 20:28:01 UTC
1 parent 873c9f1
Raw File
Tip revision: cd52023e6fedbe4d5a07b4ded8bfbb4939e66953 authored by Andrew M. Kuchling on 06 September 2008, 20:28:01 UTC
#3669 from Robert Lehmann: simplify use of iterator in example
Tip revision: cd52023
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