(self, name)
| 60 | return self.parent.find_ref(name) |
| 61 | |
| 62 | def ref(self, name): |
| 63 | rv = self.find_ref(name) |
| 64 | if rv is None: |
| 65 | raise AssertionError('Tried to resolve a name to a reference that ' |
| 66 | 'was unknown to the frame (%r)' % name) |
| 67 | return rv |
| 68 | |
| 69 | def copy(self): |
| 70 | rv = object.__new__(self.__class__) |
nothing calls this directly
no test coverage detected