summaryrefslogtreecommitdiffstats
path: root/Lib/functools.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-07-30 14:25:28 (GMT)
committerGitHub <noreply@github.com>2021-07-30 14:25:28 (GMT)
commitf7f1c26423b1208ef22cbe0f60f36e26a51cebf6 (patch)
tree0499d38d116e0ae4b995296b6db472d0952dd50d /Lib/functools.py
parent6ca35f2891a4d88503dbb3143db21a0ff258915b (diff)
downloadcpython-f7f1c26423b1208ef22cbe0f60f36e26a51cebf6.zip
cpython-f7f1c26423b1208ef22cbe0f60f36e26a51cebf6.tar.gz
cpython-f7f1c26423b1208ef22cbe0f60f36e26a51cebf6.tar.bz2
Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27478)
(cherry picked from commit be42c06bb01206209430f3ac08b72643dc7cad1c) Co-authored-by: Noah Kantrowitz <noah@coderanger.net>
Diffstat (limited to 'Lib/functools.py')
-rw-r--r--Lib/functools.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/functools.py b/Lib/functools.py
index b1f1fe8..357c1df 100644
--- a/Lib/functools.py
+++ b/Lib/functools.py
@@ -492,7 +492,7 @@ def lru_cache(maxsize=128, typed=False):
with f.cache_info(). Clear the cache and statistics with f.cache_clear().
Access the underlying function with f.__wrapped__.
- See: http://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)
+ See: https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)
"""
@@ -660,7 +660,7 @@ def cache(user_function, /):
def _c3_merge(sequences):
"""Merges MROs in *sequences* to a single MRO using the C3 algorithm.
- Adapted from http://www.python.org/download/releases/2.3/mro/.
+ Adapted from https://www.python.org/download/releases/2.3/mro/.
"""
result = []