(self, path)
| 258 | return self |
| 259 | |
| 260 | def putFile(self, path): |
| 261 | result = localPutHelper(path, self.path) |
| 262 | if 'error' in result: |
| 263 | raise raiseDataApiError(result) |
| 264 | else: |
| 265 | return self |
| 266 | |
| 267 | def delete(self): |
| 268 | try: |
nothing calls this directly
no test coverage detected