summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBlind4Basics <32236948+Blind4Basics@users.noreply.github.com>2023-03-13 22:35:37 (GMT)
committerGitHub <noreply@github.com>2023-03-13 22:35:37 (GMT)
commit61479d46848bc7a7f9b571b0b09c4a4b4436d839 (patch)
tree94d033fd83667187330c107723c3dfb244108efb
parent392f2ad3cbf2e1f24656fe0410a9b65882257582 (diff)
downloadcpython-61479d46848bc7a7f9b571b0b09c4a4b4436d839.zip
cpython-61479d46848bc7a7f9b571b0b09c4a4b4436d839.tar.gz
cpython-61479d46848bc7a7f9b571b0b09c4a4b4436d839.tar.bz2
gh-102627: Replace address pointing toward malicious web page (#102630)
* Replace known bad address pointing toward a malicious web page. 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 c543c84..09c9fc4 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://nonexistant-subdomain.python.org/']
# Retrieve a single page and report the URL and contents
def load_url(url, timeout):