An alias to self.status(), This allows you to simply call a job manager instance much like the Unix `jobs` shell command.
(self)
| 201 | return self.all[num] |
| 202 | |
| 203 | def __call__(self): |
| 204 | """An alias to self.status(), |
| 205 | |
| 206 | This allows you to simply call a job manager instance much like the |
| 207 | Unix `jobs` shell command.""" |
| 208 | |
| 209 | return self.status() |
| 210 | |
| 211 | def _update_status(self): |
| 212 | """Update the status of the job lists. |