| 282 | |
| 283 | |
| 284 | class TickAttribLast(Object): |
| 285 | def __init__(self): |
| 286 | self.pastLimit = False |
| 287 | self.unreported = False |
| 288 | |
| 289 | def __str__(self): |
| 290 | return "PastLimit: %d, Unreported: %d" % (self.pastLimit, self.unreported) |
| 291 | |
| 292 | |
| 293 | class FamilyCode(Object): |
no outgoing calls
no test coverage detected