Staging
v0.5.1
Revision 0e42f0e7991e0ae7484ea7cdc339e6293a5fd169 authored by Gregory P. Smith on 19 January 2008, 22:35:09 UTC, committed by Gregory P. Smith on 19 January 2008, 22:35:09 UTC
- Issue #1336: fix a race condition in subprocess.Popen if the garbage
  collector kicked in at the wrong time that would cause the process
  to hang when the child wrote to stderr.
1 parent 80ebe95
Raw File
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