Remove last-inserted object and return it, without filename/line info.
(self)
| 109 | return traceable_obj.set_filename_and_line_from_caller(offset + 1) |
| 110 | |
| 111 | def pop_obj(self): |
| 112 | """Remove last-inserted object and return it, without filename/line info.""" |
| 113 | return self._stack.pop().obj |
| 114 | |
| 115 | def peek_top_obj(self): |
| 116 | """Return the most recent stored object.""" |