Replaces a resource with the specified input.
(self, path, content)
| 159 | self.__send_input(9, path, content) |
| 160 | |
| 161 | def replace(self, path, content): |
| 162 | """Replaces a resource with the specified input.""" |
| 163 | self.__send_input(12, path, content) |
| 164 | |
| 165 | def store(self, path, content): |
| 166 | """Stores a binary resource in the opened database. |
nothing calls this directly
no test coverage detected