summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2019-01-18 10:04:29 -0500
committerTim Graham <timograham@gmail.com>2019-01-30 10:19:48 -0500
commit7e6b214ed34f5562dbd83cf54924a5b589a29715 (patch)
tree2a2aa16c023638436bea449acdb06224bf7f33c7 /docs/ref
parent5a5c77d55dc85c7e6cf910243257e408887f412a (diff)
Fixed #30116 -- Dropped support for Python 3.5.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/utils.txt12
1 files changed, 0 insertions, 12 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index 84cffddde0..300d4c1bea 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -514,18 +514,6 @@ https://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004
z = person.friends # does not call
x is z # is True
- .. warning::
-
- .. _cached-property-mangled-name:
-
- On Python < 3.6, ``cached_property`` doesn't work properly with a
- mangled__ name unless it's passed a ``name`` of the form
- ``_Class__attribute``::
-
- __friends = cached_property(get_friends, name='_Person__friends')
-
- __ https://docs.python.org/faq/programming.html#i-try-to-use-spam-and-i-get-an-error-about-someclassname-spam
-
.. function:: keep_lazy(func, *resultclasses)
Django offers many utility functions (particularly in ``django.utils``)