\ SIGTTIN handling. Increases the number of workers by one.
(self)
| 303 | raise StopIteration |
| 304 | |
| 305 | def handle_ttin(self): |
| 306 | """\ |
| 307 | SIGTTIN handling. |
| 308 | Increases the number of workers by one. |
| 309 | """ |
| 310 | self.num_workers += 1 |
| 311 | self.manage_workers() |
| 312 | |
| 313 | def handle_ttou(self): |
| 314 | """\ |
nothing calls this directly
no test coverage detected