Staging
v0.8.1
Revision 77aee7e57d54ca1276a7f9cd7196cd6331382e1f authored by Anthony Baxter on 05 December 2001, 04:34:13 UTC, committed by Anthony Baxter on 05 December 2001, 04:34:13 UTC
check in for patch #430846
use faster code for base64.encodestring (courtesy of Mr. Tim Peters)
and for base64.decodestring (courtesy of Anthony Baxter)
1 parent c886f2a
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