(self, *args, **kwargs)
| 286 | |
| 287 | #: Deprecated method, use `_process` instead (Remove in 0.4.10) |
| 288 | def preprocessing(self, *args, **kwargs): |
| 289 | #@NOTE: Set pyfile status from `queued` to `starting` as soon as possible to avoid race condition in ThreadManager's assignJob function |
| 290 | #@NOTE: Move to ThreadManager in 0.4.10 |
| 291 | self.pyfile.setStatus("starting") |
| 292 | |
| 293 | #@NOTE: Recheck info thread synchronization in 0.4.10 |
| 294 | return self._process(*args, **kwargs) |
| 295 | |
| 296 | def process(self, pyfile): |
| 297 | """ |