Staging
v0.5.1
https://github.com/python/cpython
Revision 066394018a8463643cc63d933493f0afa99d72cc authored by Victor Stinner on 04 December 2020, 15:23:56 UTC, committed by GitHub on 04 December 2020, 15:23:56 UTC
https://bugzilla.redhat.com/show_bug.cgi?id=1866884 is fixed in gdb
10.1 (failed to reproduce on gdb-10.1-1.fc34.aarch64).
1 parent eaccc12
Raw File
Tip revision: 066394018a8463643cc63d933493f0afa99d72cc authored by Victor Stinner on 04 December 2020, 15:23:56 UTC
bpo-41473: Reenable test_gdb on gdb 9.2 and newer (GH-23637)
Tip revision: 0663940
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