Staging
v0.5.1
https://github.com/python/cpython
Revision 8d6e26d6e4002fd9787e73c6cd843d0051872ea1 authored by Georg Brandl on 03 June 2009, 07:26:53 UTC, committed by Georg Brandl on 03 June 2009, 07:26:53 UTC
........
  r73163 | georg.brandl | 2009-06-03 09:25:35 +0200 (Mi, 03 Jun 2009) | 1 line

  Use the preferred form of raise statements in the docs.
........
1 parent a5ebc26
Raw File
Tip revision: 8d6e26d6e4002fd9787e73c6cd843d0051872ea1 authored by Georg Brandl on 03 June 2009, 07:26:53 UTC
Blocked revisions 73163 via svnmerge
Tip revision: 8d6e26d
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