Staging
v0.5.1
https://github.com/python/cpython
Revision b81f40f0adae3b1d1e57f9a89940ba827b9ede70 authored by David CARLIER on 14 March 2020, 13:48:56 UTC, committed by GitHub on 14 March 2020, 13:48:56 UTC
1 parent 57c7810
Raw File
Tip revision: b81f40f0adae3b1d1e57f9a89940ba827b9ede70 authored by David CARLIER on 14 March 2020, 13:48:56 UTC
bpo-39582: ossaudiodev module update helpers signature for ioctl calls. (GH-18412)
Tip revision: b81f40f
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