Staging
v0.5.1
https://github.com/python/cpython
Revision b9534f4ed5cb8c78468868d2ca44769057084d83 authored by R David Murray on 07 March 2013, 23:15:13 UTC, committed by R David Murray on 07 March 2013, 23:15:13 UTC
1 parent e67c6c5
Raw File
Tip revision: b9534f4ed5cb8c78468868d2ca44769057084d83 authored by R David Murray on 07 March 2013, 23:15:13 UTC
PEP8 fixup on previous patch, remove unused import in test_email.
Tip revision: b9534f4
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