Staging
v0.8.1
https://github.com/python/cpython
Revision ce6e06874b235f7825888c20fd2c6f4670a4aeba authored by Martin Panter on 16 May 2016, 01:07:13 UTC, committed by Martin Panter on 16 May 2016, 01:07:13 UTC
1 parent f95455d
Raw File
Tip revision: ce6e06874b235f7825888c20fd2c6f4670a4aeba authored by Martin Panter on 16 May 2016, 01:07:13 UTC
Issue #14132: Fix redirect handling when target is just a query string
Tip revision: ce6e068
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