Staging
v0.5.1
https://github.com/python/cpython
Revision 6b81003bdbd9375886bae54f876650bcdccfe6c7 authored by Berker Peksag on 26 February 2017, 17:38:31 UTC, committed by GitHub on 26 February 2017, 17:38:31 UTC
1 parent deea29e
Raw File
Tip revision: 6b81003bdbd9375886bae54f876650bcdccfe6c7 authored by Berker Peksag on 26 February 2017, 17:38:31 UTC
bpo-28624: Add a test that checks that cwd parameter of Popen() accepts PathLike objects (#157) (#323)
Tip revision: 6b81003
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