Staging
v0.5.1
https://github.com/python/cpython
Revision 8efccfdfd17ce2aaf176f7462cf8086e1282b985 authored by Christian Heimes on 30 October 2008, 21:52:43 UTC, committed by Christian Heimes on 30 October 2008, 21:52:43 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67052 | christian.heimes | 2008-10-30 22:26:15 +0100 (Thu, 30 Oct 2008) | 1 line

  Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members.
........
1 parent c353ea7
Raw File
Tip revision: 8efccfdfd17ce2aaf176f7462cf8086e1282b985 authored by Christian Heimes on 30 October 2008, 21:52:43 UTC
Merged revisions 67052 via svnmerge from
Tip revision: 8efccfd
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