Staging
v0.5.1
https://github.com/python/cpython
Revision acaffe65a3cede835f55f156792180e06e7398c3 authored by Tim Peters on 23 October 2004, 03:43:54 UTC, committed by Tim Peters on 23 October 2004, 03:43:54 UTC
1 parent 93ae4c1
Raw File
Tip revision: acaffe65a3cede835f55f156792180e06e7398c3 authored by Tim Peters on 23 October 2004, 03:43:54 UTC
Move to version 2 of the PSF license, approved by the Board earlier today.
Tip revision: acaffe6
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