Staging
v0.5.1
https://github.com/python/cpython
Revision 8fd366978d2020b28442831bd28df85824856e30 authored by Senthil Kumaran on 26 February 2013, 09:02:58 UTC, committed by Senthil Kumaran on 26 February 2013, 09:02:58 UTC
1 parent a5f13d2
Raw File
Tip revision: 8fd366978d2020b28442831bd28df85824856e30 authored by Senthil Kumaran on 26 February 2013, 09:02:58 UTC
Fix issue16932: Fix the urlparse example. Remote :port when scheme is not specified to demonstrate correct behavior
Tip revision: 8fd3669
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