Places new content on the stack.
(self, s)
| 62 | return self._writes.pop() |
| 63 | |
| 64 | def push_write(self, s): |
| 65 | """ |
| 66 | Places new content on the stack. |
| 67 | """ |
| 68 | self._writes.append(s) |
| 69 | |
| 70 | def find_last_write(self, content): |
| 71 | """ |
no outgoing calls
no test coverage detected