Staging
v0.5.1
https://github.com/python/cpython
Revision b9ce9b5132fd90dc0fbd5f1a40ad424f29682216 authored by Benjamin Peterson on 05 May 2009, 22:43:21 UTC, committed by Benjamin Peterson on 05 May 2009, 22:43:21 UTC
1 parent b173f78
Raw File
Tip revision: b9ce9b5132fd90dc0fbd5f1a40ad424f29682216 authored by Benjamin Peterson on 05 May 2009, 22:43:21 UTC
edits
Tip revision: b9ce9b5
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