(self, *objs)
| 505 | return objs |
| 506 | |
| 507 | def add_results(self, *objs): |
| 508 | if 2 <= self.debug: |
| 509 | print >>sys.stderr, 'add_results: %r' % (objs,) |
| 510 | self.results.extend(objs) |
| 511 | return |
| 512 | |
| 513 | def start_type(self, pos, type): |
| 514 | self.context.append((pos, self.curtype, self.curstack)) |
no test coverage detected