Do lookup on ffunc (Frame Function) @returns: String name of ffunc index
(self)
| 278 | return output |
| 279 | |
| 280 | def ffunc_lookup(self): |
| 281 | ''' |
| 282 | Do lookup on ffunc (Frame Function) |
| 283 | |
| 284 | @returns: String name of ffunc index |
| 285 | ''' |
| 286 | lookup = { |
| 287 | 0: 'off', |
| 288 | } |
| 289 | return lookup[self.ffunc] |
| 290 | |
| 291 | def pfunc_lookup(self): |
| 292 | ''' |