diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-03-13 23:28:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 23:28:36 (GMT) |
commit | cb0b009cfb4ae2a87a8737250c526b8f95d0551f (patch) | |
tree | c136c02e9750e6cb8166672111e55cdf60488e39 /Doc | |
parent | bf99e19b997b6c42c6cddd9a73e47add549f24c6 (diff) | |
download | cpython-cb0b009cfb4ae2a87a8737250c526b8f95d0551f.zip cpython-cb0b009cfb4ae2a87a8737250c526b8f95d0551f.tar.gz cpython-cb0b009cfb4ae2a87a8737250c526b8f95d0551f.tar.bz2 |
[3.9] gh-102627: Replace address pointing toward malicious web page (GH-102630) (GH-102666)
(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>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/concurrent.futures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index 70a17a2..37c1420 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -194,7 +194,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): |