(self)
| 114 | LOG.debug(doc_string) |
| 115 | |
| 116 | def remove_last_doc_string(self): |
| 117 | # Removes all writes inserted by last doc string |
| 118 | if self._last_doc_string is not None: |
| 119 | start, end = self._last_doc_string |
| 120 | del self._writes[start:end] |
| 121 | |
| 122 | def write_from_file(self, filename): |
| 123 | with open(filename) as f: |
no outgoing calls