Staging
v0.8.1
https://github.com/python/cpython
Revision 1681b622515e2c174d59e79746579e71339adc04 authored by Fred Drake on 13 November 2004, 17:45:39 UTC, committed by Fred Drake on 13 November 2004, 17:45:39 UTC
so that this is harder to forget to do for development of new styles
1 parent bbc0d44
Raw File
Tip revision: 1681b622515e2c174d59e79746579e71339adc04 authored by Fred Drake on 13 November 2004, 17:45:39 UTC
add another way to specify an alternate name for the documentation set,
Tip revision: 1681b62
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