Inserts the content argument to the stack directly before the supplied index.
(self, index, content)
| 78 | return None |
| 79 | |
| 80 | def insert_write(self, index, content): |
| 81 | """ |
| 82 | Inserts the content argument to the stack directly before the |
| 83 | supplied index. |
| 84 | """ |
| 85 | self._writes.insert(index, content) |
| 86 | |
| 87 | def getvalue(self): |
| 88 | """ |
no outgoing calls