(self, obj)
| 1308 | idle = property(_get_idle, doc=_get_idle.__doc__) |
| 1309 | |
| 1310 | def put(self, obj): |
| 1311 | self._queue.put(obj) |
| 1312 | if obj is _SHUTDOWNREQUEST: |
| 1313 | return |
| 1314 | |
| 1315 | def grow(self, amount): |
| 1316 | """Spawn new worker threads (not above self.max).""" |