Staging
v0.5.1
Revision 1e5b25b8c0c45ccfd58da2cb82fdf231c6823fef authored by Yury Selivanov on 29 January 2018, 05:25:05 UTC, committed by GitHub on 29 January 2018, 05:25:05 UTC
To mitigate the situation when the buildbot is under load
and is unable to send/receive data fast enough:

* reduce the size of the payload
* set a generous timeout for socket ops
1 parent 07627e9
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