summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-01-19 08:35:16 +0100
committerCarlton Gibson <carlton@noumenal.es>2021-02-10 10:20:54 +0100
commitec0ff406311de88f4e2a135d784363424fe602aa (patch)
treec1659b85ea145704a1b733d40a6a9a45e9332d0f /docs/ref
parent9c6ba876928fd20194ac3238dc06aeae66d7bd50 (diff)
Fixed #32355 -- Dropped support for Python 3.6 and 3.7
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/django-admin.txt4
-rw-r--r--docs/ref/utils.txt4
2 files changed, 1 insertions, 7 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 2dcd860400..7252fca57f 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -1507,10 +1507,6 @@ May be specified multiple times and combined with :option:`test --tag`.
Runs test methods and classes matching test name patterns, in the same way as
:option:`unittest's -k option<unittest.-k>`. Can be specified multiple times.
-.. admonition:: Python 3.7 and later
-
- This feature is only available for Python 3.7 and later.
-
.. django-admin-option:: --pdb
Spawns a ``pdb`` debugger at each test error or failure. If you have it
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index 843d6ab4de..485009bde6 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -493,9 +493,7 @@ https://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004
expensive ``get_friends()`` method and wanted to allow calling it without
retrieving the cached value, you could write::
- friends = cached_property(get_friends, name='friends')
-
- You only need the ``name`` argument for Python < 3.6 support.
+ friends = cached_property(get_friends)
While ``person.get_friends()`` will recompute the friends on each call, the
value of the cached property will persist until you delete it as described