Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 4ac0fc8c3b11a4b760159f9f87661824b20958aa authored by cvs2svn on 26 January 2005, 04:55:57 UTC
This commit was manufactured by cvs2svn to create tag 'r235c1'.
Tip revision: 4ac0fc8
enumobject.h
#ifndef Py_ENUMOBJECT_H
#define Py_ENUMOBJECT_H

/* Enumerate Object */

#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyEnum_Type;

#ifdef __cplusplus
}
#endif

#endif /* !Py_ENUMOBJECT_H */
back to top