From 02a90212b813549d5f27eb296b258c63a3fb6e72 Mon Sep 17 00:00:00 2001 From: Blind4Basics <32236948+Blind4Basics@users.noreply.github.com> Date: Sun, 12 Mar 2023 19:52:18 +0100 Subject: [PATCH 1/3] Replace address pointing toward malicious web page FIX #102627 partial fix only: would require to go through the entire documentation --- Doc/library/concurrent.futures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index c543c849585b7f..a90e6bc3b5dad3 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -202,7 +202,7 @@ ThreadPoolExecutor Example 'http://www.cnn.com/', 'http://europe.wsj.com/', 'http://www.bbc.co.uk/', - 'http://some-made-up-domain.com/'] + 'http://example.com/non-existing-page'] # Retrieve a single page and report the URL and contents def load_url(url, timeout): From aa4ba9d721f716f42331618f5b7d8173fa439d9d Mon Sep 17 00:00:00 2001 From: Blind4Basics <32236948+Blind4Basics@users.noreply.github.com> Date: Mon, 13 Mar 2023 09:07:46 +0100 Subject: [PATCH 2/3] Update Doc/library/concurrent.futures.rst Co-authored-by: C.A.M. Gerlach --- Doc/library/concurrent.futures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index a90e6bc3b5dad3..c2e7c53837e205 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -202,7 +202,7 @@ ThreadPoolExecutor Example 'http://www.cnn.com/', 'http://europe.wsj.com/', 'http://www.bbc.co.uk/', - 'http://example.com/non-existing-page'] + 'http://nonexistant-subdomain.python.org/] # Retrieve a single page and report the URL and contents def load_url(url, timeout): From 27108c2117478d700315bd4744ae52a68f31aa4b Mon Sep 17 00:00:00 2001 From: "C.A.M. Gerlach" Date: Mon, 13 Mar 2023 04:08:47 -0500 Subject: [PATCH 3/3] Fix missing end quote from CAM's suggestion Co-authored-by: Hugo van Kemenade --- Doc/library/concurrent.futures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index c2e7c53837e205..09c9fc4e6e227a 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -202,7 +202,7 @@ ThreadPoolExecutor Example 'http://www.cnn.com/', 'http://europe.wsj.com/', 'http://www.bbc.co.uk/', - 'http://nonexistant-subdomain.python.org/] + 'http://nonexistant-subdomain.python.org/'] # Retrieve a single page and report the URL and contents def load_url(url, timeout):