summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRida Zouga <96395950+ZougaRida@users.noreply.github.com>2025-11-30 08:29:43 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2025-11-30 08:31:32 +0100
commit85586052e8d1d9f160b9f1b351e61a787a8e4bed (patch)
treeed6f2eafd022f5dddd48f6813aa966f28fe82f98
parentde1dc3a87427475590d8efe10f3f627397524fca (diff)
[5.2.x] Added link to Python Pickle documentation in docs/topics/cache.txt.
Co-authored-by: Rida Zouga <ridazouga@gmail.com> Backport of 3ea0195ca57790d7bd6921ecaa32312eabec78d0 from main
-rw-r--r--docs/topics/cache.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 4d7c627745..5cc705b133 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -863,8 +863,8 @@ For cases like this, Django exposes a low-level cache API. You can use this API
to store objects in the cache with any level of granularity you like. You can
cache any Python object that can be pickled safely: strings, dictionaries,
lists of model objects, and so forth. (Most common Python objects can be
-pickled; refer to the Python documentation for more information about
-pickling.)
+pickled; refer to the :mod:`Python documentation <pickle>` for more information
+about pickling.)
Accessing the cache
-------------------