Staging
v0.5.1
Revision a0c9caad66f01328155177180df1c46fe7c62e57 authored by Gregory P. Smith on 16 November 2015, 02:19:10 UTC, committed by Gregory P. Smith on 16 November 2015, 02:19:10 UTC
not allow the send_signal(), terminate(), or kill() methods to do
anything as they could potentially signal a different process.
1 parent 025a1fd
Raw File
bltinmodule.h
#ifndef Py_BLTINMODULE_H
#define Py_BLTINMODULE_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyFilter_Type;
PyAPI_DATA(PyTypeObject) PyMap_Type;
PyAPI_DATA(PyTypeObject) PyZip_Type;

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