Removes and returns the last content written to the stack.
(self)
| 56 | return self._writes[-1] |
| 57 | |
| 58 | def pop_write(self): |
| 59 | """ |
| 60 | Removes and returns the last content written to the stack. |
| 61 | """ |
| 62 | return self._writes.pop() |
| 63 | |
| 64 | def push_write(self, s): |
| 65 | """ |
no outgoing calls
no test coverage detected