Staging
v0.5.1
https://github.com/python/cpython
Revision 16190c8236f6d154507353850916cd49292cc720 authored by Éric Araujo on 25 April 2011, 17:05:53 UTC, committed by Éric Araujo on 25 April 2011, 17:05:53 UTC
1 parent 2bad92d
Raw File
Tip revision: 16190c8236f6d154507353850916cd49292cc720 authored by Éric Araujo on 25 April 2011, 17:05:53 UTC
Change markup so that it creates a link
Tip revision: 16190c8
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