Staging
v0.5.1
https://github.com/python/cpython
Revision 1b615b2f035d207941e44259a92ed0bdcc56ac45 authored by Raymond Hettinger on 11 June 2019, 09:01:06 UTC, committed by GitHub on 11 June 2019, 09:01:06 UTC
1 parent c59b1bb
Raw File
Tip revision: 1b615b2f035d207941e44259a92ed0bdcc56ac45 authored by Raymond Hettinger on 11 June 2019, 09:01:06 UTC
[3.7] bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13965) (GH-13968)
Tip revision: 1b615b2
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