Staging
v0.5.1
https://github.com/python/cpython
Revision 4ec3c2695265d070d14b4f8c6c9573e77aab6086 authored by Skip Montanaro on 25 March 2006, 14:12:03 UTC, committed by Skip Montanaro on 25 March 2006, 14:12:03 UTC
1 parent baf05b7
Raw File
Tip revision: 4ec3c2695265d070d14b4f8c6c9573e77aab6086 authored by Skip Montanaro on 25 March 2006, 14:12:03 UTC
Found this in an old email message from Hartmut Goebel.
Tip revision: 4ec3c26
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