Return a human readable position for the node.
(self, node)
| 591 | macro_ref.accesses_varargs, macro_ref.accesses_caller)) |
| 592 | |
| 593 | def position(self, node): |
| 594 | """Return a human readable position for the node.""" |
| 595 | rv = 'line %d' % node.lineno |
| 596 | if self.name is not None: |
| 597 | rv += ' in ' + repr(self.name) |
| 598 | return rv |
| 599 | |
| 600 | def dump_local_context(self, frame): |
| 601 | return '{%s}' % ', '.join( |
no outgoing calls
no test coverage detected