Staging
v0.5.1
https://github.com/python/cpython
Revision 47a9a4bedaa343e72898b2c7534d27f3e0cf4ff5 authored by Łukasz Langa on 26 November 2016, 22:00:39 UTC, committed by Łukasz Langa on 26 November 2016, 22:00:39 UTC
1 parent c7b1a0b
Raw File
Tip revision: 47a9a4bedaa343e72898b2c7534d27f3e0cf4ff5 authored by Łukasz Langa on 26 November 2016, 22:00:39 UTC
Fixes #24142: [configparser] always join multiline values to not leave the parser in an invalid state
Tip revision: 47a9a4b
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