summaryrefslogtreecommitdiffstats
path: root/Doc/faq
diff options
context:
space:
mode:
authorFurkan Onder <furkanonder@protonmail.com>2023-02-14 10:20:11 (GMT)
committerGitHub <noreply@github.com>2023-02-14 10:20:11 (GMT)
commit3690688149dca11589af59b7704541336613199a (patch)
tree3a775ed8bb3981936540b8fb352a5f6c120a0375 /Doc/faq
parente5da9ab2c82c6b4e4f8ffa699a9a609ea1bea255 (diff)
downloadcpython-3690688149dca11589af59b7704541336613199a.zip
cpython-3690688149dca11589af59b7704541336613199a.tar.gz
cpython-3690688149dca11589af59b7704541336613199a.tar.bz2
GH-101898: Fix missing term references for hashable definition (#101899)
Fix missing term references for hashable definition
Diffstat (limited to 'Doc/faq')
-rw-r--r--Doc/faq/programming.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index ba42289..38f9b17 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -1979,7 +1979,7 @@ method result will be released right away. The disadvantage is that if
instances accumulate, so too will the accumulated method results. They
can grow without bound.
-The *lru_cache* approach works with methods that have hashable
+The *lru_cache* approach works with methods that have :term:`hashable`
arguments. It creates a reference to the instance unless special
efforts are made to pass in weak references.