debugger.Breakpoint.Information
|
This function displays break point information.
[Specification format]
debugger.Breakpoint.Information()
|
[Argument(s)]
None
[Return value]
List of break point information (see the BreakpointInfo property for detail)
[Detailed description]
- | This function displays the break point settings in the following format. |
break-event-number break-name state address-location
|
[Example of use]
>>>debugger.Breakpoint.Information()
1 PythonBreak0001 Enable 0x000002dc
2 Break0001 Enable test1.c#_sub1
3 PythonBreak0002 Enable 0x000002ec
4 Break0002 Enable test1.c#_sub1+10
>>>
|