Staging
v0.5.1
https://github.com/python/cpython
Revision 4b730161fde1965796ffefdbdd5601369e5c10c2 authored by Serhiy Storchaka on 23 January 2014, 07:44:05 UTC, committed by Serhiy Storchaka on 23 January 2014, 07:44:05 UTC
It tests the convertion Tcl values to Python values when Tcl calls a command
implemented on Python. Currently all values are passed as strings.
1 parent 94338de
Raw File
Tip revision: 4b730161fde1965796ffefdbdd5601369e5c10c2 authored by Serhiy Storchaka on 23 January 2014, 07:44:05 UTC
Added test_user_command in test_tcl.
Tip revision: 4b73016
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);
PyAPI_FUNC(int) _PyOS_IsMainThread(void);

#ifdef MS_WINDOWS
/* windows.h is not included by Python.h so use void* instead of HANDLE */
PyAPI_FUNC(void*) _PyOS_SigintEvent(void);
#endif

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