From fec761f51fa94e3052efb78df0a7a21e956d3ddd Mon Sep 17 00:00:00 2001 From: Damien-Chen Date: Sun, 20 Oct 2024 20:39:46 +0800 Subject: [PATCH] test --- Doc/Makefile | 1 + Doc/library/concurrent.futures.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/Makefile b/Doc/Makefile index a090ee5ba92705..5ad04120b9f724 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -55,6 +55,7 @@ build: # Look first for a Misc/NEWS file (building from a source release tarball # or old repo) and use that, otherwise look for a Misc/NEWS.d directory # (building from a newer repo) and use blurb to generate the NEWS file. + $(BLURB) help @if [ -f ../Misc/NEWS ] ; then \ echo "Using existing Misc/NEWS file"; \ cp ../Misc/NEWS build/NEWS; \ diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index 45a73705f10e92..2fb3bb1001f248 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -523,7 +523,7 @@ The :class:`Future` class encapsulates the asynchronous execution of a callable. running. Added callables are called in the order that they were added and are - always called in a thread belonging to the process that added them. If + always called in :meth:`Future.set_result` is called according to its source. If the callable raises an :exc:`Exception` subclass, it will be logged and ignored. If the callable raises a :exc:`BaseException` subclass, the behavior is undefined.