This class holds stack information (return value of the debugger.Where function).
[Type]
class StackInfo:
Number = 0
AddressInfoText = None
|
[Variable]
|
|
Number
|
This holds the stack number.
|
AddressInfoText
|
This holds the stack address information as a string.
|
[Detailed description]
- | StackInfo is a class, and it is the structure of the return value from the debugger.Where function. |
[Example of use]
>>>info = debugger.Where()
1: test2.c#
2: test1.c#main#41
>>>print info[0].Number
1
>>>print info[0].AddressInfoText
test2.c#
>>>info = debugger.Where
1: test2.c#
--- Information below might be inaccurate.
2: test1.c#main#41
>>>print a[1].Number
None
>>>print a[1].AddressInfoText
--- Information below might be inaccurate.
>>>
|