TraceInfo.CreateOtherDict
|
This function converts the value of TraceInfo.Other into the dict type. [IECUBE] [IECUBE2] [Simulator]
[Specification format]
traceInfo.CreateOtherDict()
|
[Argument(s)]
None
[Return value]
Object produced by converting the value of TraceInfo.Other into the dict type (for details of TraceInfo.Other, see the description of the TraceInfoTraceInfo class.)
[Detailed description]
This function converts the value of TraceInfo.Other into the dict type.
[Example of use]
>>>info = debugger.Trace.Get(1)
1853 00h00min00s003ms702µs000ns 0x000003c2 jarl _errfunc, lp
>>>print info[0].Other
Guest,GPID=0,SPID=2
>>>print info[0].CreateOtherDict()
{'SPID': '2', 'GPID': '0', 'Guest': ''}
|