Staging
v0.5.1
https://github.com/python/cpython
Revision ad7363bed130387194edde4b4d9b436a70c4fb27 authored by Walter Dörwald on 12 November 2007, 10:03:39 UTC, committed by Walter Dörwald on 12 November 2007, 10:03:39 UTC
Fix TextCalendar.prweek(). This closes issue #1427.
1 parent d66350a
Raw File
Tip revision: ad7363bed130387194edde4b4d9b436a70c4fb27 authored by Walter Dörwald on 12 November 2007, 10:03:39 UTC
Backport r58942:
Tip revision: ad7363b
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