Searched refs:cancel_futures (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Lib/concurrent/futures/ |
D | thread.py | 216 def shutdown(self, wait=True, *, cancel_futures=False): argument 219 if cancel_futures:
|
D | process.py | 739 def shutdown(self, wait=True, *, cancel_futures=False): argument 741 self._cancel_pending_futures = cancel_futures
|
D | _base.py | 617 def shutdown(self, wait=True, *, cancel_futures=False): argument
|
/third_party/python/Doc/library/ |
D | concurrent.futures.rst | 70 .. method:: shutdown(wait=True, *, cancel_futures=False) 85 If *cancel_futures* is ``True``, this method will cancel all pending 88 of *cancel_futures*. 90 If both *cancel_futures* and *wait* are ``True``, all futures that the 107 Added *cancel_futures*.
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a4.rst | 558 Added a new *cancel_futures* parameter to
|
/third_party/python/Lib/test/ |
D | test_concurrent_futures.py | 364 executor.shutdown(cancel_futures=True)
|
/third_party/python/Doc/whatsnew/ |
D | 3.9.rst | 392 Added a new *cancel_futures* parameter to
|