[Python-checkins] gh-102627: Replace address pointing toward malicious web page (#102630)

gpshead webhook-mailer at python.org
Mon Mar 13 18:35:53 EDT 2023


https://github.com/python/cpython/commit/61479d46848bc7a7f9b571b0b09c4a4b4436d839
commit: 61479d46848bc7a7f9b571b0b09c4a4b4436d839
branch: main
author: Blind4Basics <32236948+Blind4Basics at users.noreply.github.com>
committer: gpshead <greg at krypto.org>
date: 2023-03-13T15:35:37-07:00
summary:

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 at Gerlach.CAM>
Co-authored-by: Hugo van Kemenade <hugovk at users.noreply.github.com>

files:
M Doc/library/concurrent.futures.rst

diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst
index c543c849585b..09c9fc4e6e22 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):



More information about the Python-checkins mailing list