Staging
v0.5.1
https://github.com/python/cpython
Revision f222ab14209ed0c01827f10f585b60b7f8b1f956 authored by Tarek Ziadé on 05 March 2010, 00:30:44 UTC, committed by Tarek Ziadé on 05 March 2010, 00:30:44 UTC
........
  r78666 | tarek.ziade | 2010-03-05 01:16:02 +0100 (Fri, 05 Mar 2010) | 1 line

  reverting partially distutils to its 2.6.x state so 2.7a4 looks more like the 2.7b1 in this. the whole revert will occur after a4 is tagged
........
1 parent 3198098
Raw File
Tip revision: f222ab14209ed0c01827f10f585b60b7f8b1f956 authored by Tarek Ziadé on 05 March 2010, 00:30:44 UTC
Blocked revisions 78666 via svnmerge
Tip revision: f222ab1
intrcheck.h

#ifndef Py_INTRCHECK_H
#define Py_INTRCHECK_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
PyAPI_FUNC(void) PyOS_InitInterrupts(void);
PyAPI_FUNC(void) PyOS_AfterFork(void);

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTRCHECK_H */
back to top