Staging
v0.5.1
https://github.com/python/cpython
Revision 3ba24783baf7ed9973c59f79c1a04bda5ac2b3dd authored by Neal Norwitz on 19 August 2006, 04:19:14 UTC, committed by Neal Norwitz on 19 August 2006, 04:19:14 UTC
object so we don't leak op.  (Fixes an earlier patch to this code)

Klockwork #350
1 parent 03ee62c
Raw File
Tip revision: 3ba24783baf7ed9973c59f79c1a04bda5ac2b3dd authored by Neal Norwitz on 19 August 2006, 04:19:14 UTC
Move initialization of interned strings to before allocating the
Tip revision: 3ba2478
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