summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-03-13 16:29:24 -0700
committerGitHub <noreply@github.com>2023-03-13 19:29:24 -0400
commit045b2523ff395efbbbd9369c7becec8e2236bde9 (patch)
tree3dfe504865253dfe26f1d0f1f84ab9abe81c306b
parentddd495e0552be409e3c8c280a6f7a69ed2e6425e (diff)
downloadcpython-git-045b2523ff395efbbbd9369c7becec8e2236bde9.tar.gz
[3.8] gh-102627: Replace address pointing toward malicious web page (GH-102630) (GH-102667)
(cherry picked from commit 61479d46848bc7a7f9b571b0b09c4a4b4436d839) Co-authored-by: Blind4Basics <32236948+Blind4Basics@users.noreply.github.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-rw-r--r--Doc/library/concurrent.futures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst
index 54c9c2e0fd..cf9cd4c1ec 100644
--- a/Doc/library/concurrent.futures.rst
+++ b/Doc/library/concurrent.futures.rst
@@ -182,7 +182,7 @@ ThreadPoolExecutor Example
'http://www.cnn.com/',
'http://europe.wsj.com/',
'http://www.bbc.co.uk/',
- 'http://some-made-up-domain.com/']
+ 'http://nonexistant-subdomain.python.org/']
# Retrieve a single page and report the URL and contents
def load_url(url, timeout):