Staging
v0.5.1
https://github.com/python/cpython
Revision 23a48ad101c2068b546feead99db8b7522402514 authored by Eric Smith on 27 March 2008, 09:42:35 UTC, committed by Eric Smith on 27 March 2008, 09:42:35 UTC
 and some string concatenations.
Removed unneeded __future__ print_function import.
1 parent 81caa79
Raw File
Tip revision: 23a48ad101c2068b546feead99db8b7522402514 authored by Eric Smith on 27 March 2008, 09:42:35 UTC
Added test cases for single quoted strings, both forms of triple quotes,
Tip revision: 23a48ad
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