[Python-checkins] (no subject)

Stéphane Wirtel webhook-mailer at python.org
Mon Sep 16 14:36:18 EDT 2019




To: python-checkins at python.org
Subject: Doc: Fix Wikipedia link for functools.lru_cache (GH-16183)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/336b3064d8981bc7f76c5cc6f6a0527df697=
71d6
commit: 336b3064d8981bc7f76c5cc6f6a0527df69771d6
branch: master
author: amist <amistern0 at gmail.com>
committer: St=C3=A9phane Wirtel <stephane at wirtel.be>
date: 2019-09-16T20:36:14+02:00
summary:

Doc: Fix Wikipedia link for functools.lru_cache (GH-16183)

files:
M Lib/functools.py

diff --git a/Lib/functools.py b/Lib/functools.py
index f87d9c571873..3192bd02d93e 100644
--- a/Lib/functools.py
+++ b/Lib/functools.py
@@ -482,7 +482,7 @@ def lru_cache(maxsize=3D128, typed=3DFalse):
     with f.cache_info().  Clear the cache and statistics with f.cache_clear(=
).
     Access the underlying function with f.__wrapped__.
=20
-    See:  http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used
+    See:  http://en.wikipedia.org/wiki/Cache_replacement_policies#Least_rece=
ntly_used_(LRU)
=20
     """
=20



More information about the Python-checkins mailing list