Staging
v0.5.1
https://github.com/python/cpython
Revision e619427f7eb17c370f31c6d4f7625eda8a0e9dce authored by Antoine Pitrou on 04 September 2013, 18:52:14 UTC, committed by Antoine Pitrou on 04 September 2013, 18:52:14 UTC
2 parent s 73821c4 + e93b63b
Raw File
Tip revision: e619427f7eb17c370f31c6d4f7625eda8a0e9dce authored by Antoine Pitrou on 04 September 2013, 18:52:14 UTC
Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened.
Tip revision: e619427
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