Kill all BG processes started by %%script and its family.
(self, _nouse_='')
| 365 | |
| 366 | @line_magic("killbgscripts") |
| 367 | def killbgscripts(self, _nouse_=''): |
| 368 | """Kill all BG processes started by %%script and its family.""" |
| 369 | self.kill_bg_processes() |
| 370 | print("All background processes were killed.") |
| 371 | |
| 372 | def kill_bg_processes(self): |
| 373 | """Kill all BG processes which are still running.""" |
nothing calls this directly
no test coverage detected