Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 3c603f3618fcf7c519e96b9a0d11e2670a47cbb4 authored by Tim Golden on 26 April 2014, 14:47:08 UTC
Issue21349 Passing a memoryview to _winreg.SetValueEx now correctly raises a TypeError where it previously crashed the interpreter. Patch by Brian Kearns
Tip revision: 3c603f3
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