(self, type)
| 518 | return |
| 519 | |
| 520 | def end_type(self, type): |
| 521 | if self.curtype != type: |
| 522 | raise PSTypeError('Type mismatch: %r != %r' % (self.curtype, type)) |
| 523 | objs = [ obj for (_,obj) in self.curstack ] |
| 524 | (pos, self.curtype, self.curstack) = self.context.pop() |
| 525 | if 2 <= self.debug: |
| 526 | print >>sys.stderr, 'end_type: pos=%r, type=%r, objs=%r' % (pos, type, objs) |
| 527 | return (pos, objs) |
| 528 | |
| 529 | def do_keyword(self, pos, token): |
| 530 | return |
no test coverage detected