Staging
v0.5.1
https://github.com/python/cpython
Revision 1521fdae594d87cfc724711aef1a50aa555947d2 authored by Kurt B. Kaiser on 06 May 2009, 03:38:31 UTC, committed by Kurt B. Kaiser on 06 May 2009, 03:38:31 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72226 | kurt.kaiser | 2009-05-02 21:03:44 -0400 (Sat, 02 May 2009) | 3 lines

  idle.py modified and simplified to better support
  developing experimental versions of IDLE which are
  not installed in the standard location.
........
1 parent cef4b81
Raw File
Tip revision: 1521fdae594d87cfc724711aef1a50aa555947d2 authored by Kurt B. Kaiser on 06 May 2009, 03:38:31 UTC
Merged revisions 72226 via svnmerge from
Tip revision: 1521fda
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