Staging
v0.5.1
https://github.com/python/cpython
Revision ccddc474c3c7c664bec879deb41bb91aa5dab109 authored by Éric Araujo on 15 February 2012, 16:07:49 UTC, committed by Éric Araujo on 15 February 2012, 16:07:49 UTC
1 parent b2f5c0a
Raw File
Tip revision: ccddc474c3c7c664bec879deb41bb91aa5dab109 authored by Éric Araujo on 15 February 2012, 16:07:49 UTC
Improve doc for atexit.register and unregister (#12297)
Tip revision: ccddc47
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