Kill all BG processes started by %%script and its family.
(self, _nouse_='')
| 254 | |
| 255 | @line_magic("killbgscripts") |
| 256 | def killbgscripts(self, _nouse_=''): |
| 257 | """Kill all BG processes started by %%script and its family.""" |
| 258 | self.kill_bg_processes() |
| 259 | print("All background processes were killed.") |
| 260 | |
| 261 | def kill_bg_processes(self): |
| 262 | """Kill all BG processes which are still running.""" |
nothing calls this directly
no test coverage detected