Staging
v0.5.1
https://github.com/python/cpython
Revision fb25d88534f3f1cd7eb8dc0e1c958a03c3269f3e authored by Jack Jansen on 25 March 2002, 10:21:42 UTC, committed by Jack Jansen on 25 March 2002, 10:21:42 UTC
Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, inAlso blacklisted some constants with definitions that were not Python-compatible.
1 parent 3dc3f09
Raw File
Tip revision: fb25d88534f3f1cd7eb8dc0e1c958a03c3269f3e authored by Jack Jansen on 25 March 2002, 10:21:42 UTC
Backport of _AEmodule.c 1.10 and aesupport.py 1.26:
Tip revision: fb25d88
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