1.2.13.2 Showing Signal-handling status (info handle, info signals)

info handle [signal-name|signal-number]
If a signal name or number is given just the information regarding that signal is shown. Here's an example:

  (Pydb) info handle INT
  Signal        Stop	Print	Print Stack	Pass to program
  SIGINT        True	True	False      	False

If no signal name or number is given, print a table of all the kinds of signals and how the debugger has been told to handle each one. You can use this to see the signal numbers of all the defined types of signals.

info signal is an alias for info handle.

See About this document... for information on suggesting changes.