Staging
v0.8.1
https://github.com/python/cpython
Revision 4322c178b9923cb687bcb6beea5f46df755d0b61 authored by Senthil Kumaran on 26 May 2012, 01:55:28 UTC, committed by Senthil Kumaran on 26 May 2012, 01:55:28 UTC
2 parent s 0b6f6c8 + ffa4b2c
Raw File
Tip revision: 4322c178b9923cb687bcb6beea5f46df755d0b61 authored by Senthil Kumaran on 26 May 2012, 01:55:28 UTC
Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just have ascii in help msg
Tip revision: 4322c17
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