(self, frame)
| 598 | return rv |
| 599 | |
| 600 | def dump_local_context(self, frame): |
| 601 | return '{%s}' % ', '.join( |
| 602 | '%r: %s' % (name, target) for name, target |
| 603 | in iteritems(frame.symbols.dump_stores())) |
| 604 | |
| 605 | def write_commons(self): |
| 606 | """Writes a common preamble that is used by root and block functions. |
no test coverage detected