Staging
v0.8.1
https://github.com/python/cpython
Revision 4f6da63f450459c71f2a22dc7b0351c48f391225 authored by Georg Brandl on 22 May 2009, 10:01:58 UTC, committed by Georg Brandl on 22 May 2009, 10:01:58 UTC
........
  r72828 | georg.brandl | 2009-05-22 11:58:48 +0200 (Fr, 22 Mai 2009) | 1 line

  Correction in softspace behavior description.
........
1 parent 8e112e6
Raw File
Tip revision: 4f6da63f450459c71f2a22dc7b0351c48f391225 authored by Georg Brandl on 22 May 2009, 10:01:58 UTC
Blocked revisions 72828 via svnmerge
Tip revision: 4f6da63
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