(self, string, where=-1)
| 81 | self.search(token, string) |
| 82 | |
| 83 | def append(self, string, where=-1): |
| 84 | if where == -1: |
| 85 | self.new_config.append("%s\n" % string) |
| 86 | else: |
| 87 | self.new_config.insert(where, "%s\n" % string) |
| 88 | |
| 89 | def add(self, string, where=-1): |
| 90 | for index, line in enumerate(self.new_config): |
no outgoing calls