Staging
v0.5.1
https://github.com/python/cpython
Revision 13af3645cff47a555a7a3102161f85c6ae74b623 authored by Guido van Rossum on 07 October 2002, 17:09:25 UTC, committed by Guido van Rossum on 07 October 2002, 17:09:25 UTC
Extend stripid() to handle strings ending in more than one '>'.
Add resolve() to handle looking up objects and names (fix SF bug 586931).
Add a nicer error message when given a filename that doesn't exist.
1 parent 2972bde
Raw File
Tip revision: 13af3645cff47a555a7a3102161f85c6ae74b623 authored by Guido van Rossum on 07 October 2002, 17:09:25 UTC
Backport 1.68:
Tip revision: 13af364
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