Staging
v0.8.1
https://github.com/python/cpython
Revision c56894d305211c98882898f237ff54f620520139 authored by Serhiy Storchaka on 05 September 2013, 14:44:53 UTC, committed by Serhiy Storchaka on 05 September 2013, 14:44:53 UTC
their version strings to stdout, and not to sderr.
1 parent 34464d4
Raw File
Tip revision: c56894d305211c98882898f237ff54f620520139 authored by Serhiy Storchaka on 05 September 2013, 14:44:53 UTC
Issue #18922: Now The Lib/smtpd.py and Tools/i18n/msgfmt.py scripts write
Tip revision: c56894d
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