(self)
| 259 | return True |
| 260 | |
| 261 | def unlink(self): |
| 262 | |
| 263 | if not(self.extra_lock is None): |
| 264 | self.extra_lock.acquire() |
| 265 | self.ctx.push() |
| 266 | try: |
| 267 | for name in self.input_names: |
| 268 | self.context.set_tensor_address(name, int(self.dinputs[name])) |
| 269 | except: |
| 270 | self.ctx.pop() |
| 271 | if not(self.extra_lock is None): |
| 272 | self.extra_lock.release() |
| 273 | return False |
| 274 | self.ctx.pop() |
| 275 | if not(self.extra_lock is None): |
| 276 | self.extra_lock.release() |
| 277 | return True |
| 278 |
nothing calls this directly
no outgoing calls
no test coverage detected