There are no direct bindings for this in Python. Access to them through ctypes is quite simple; here is an example.
import ctypes, signal
libc = ctypes.cdll.LoadLibrary("libc.so.6")
libc.sighold(signal.SIGKILL)
libc.sigrelse(signal.SIGKILL)
, , Python , C. Python , C , ( ..). Python .
, , , Python , C.