Staging
v0.8.1
Revision 4e1be72e6babf857d9f263b087dae3123ac8efe1 authored by Jeremy Hylton on 12 October 2000, 20:23:23 UTC, committed by Jeremy Hylton on 12 October 2000, 20:23:23 UTC
transformer.py: return '*', None from com_import_as_name
pycodegen.py: special case for name == '*'
pyassem.py: fix stack counting for IMPORT_ opcodes
1 parent babe326
Raw File
intrcheck.h

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

extern DL_IMPORT(int) PyOS_InterruptOccurred(void);
extern DL_IMPORT(void) PyOS_InitInterrupts(void);
DL_IMPORT(void) PyOS_AfterFork(void);

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