1
0
mirror of https://github.com/django/django.git synced 2025-04-12 03:22:21 +00:00

[2.2.x] Refs -- Clarified cached_property 2.2 release note.

Backport of 3b64e2b77570c73a0d7092124fa73439e0fb4305 from master.
This commit is contained in:
Tim Graham 2019-02-12 15:12:14 -05:00
parent 28a6046b54
commit c3655b1528

@ -345,9 +345,9 @@ In usage like::
alias = base
``alias`` is not cached. Such usage now raises ``TypeError: Cannot assign the
same cached_property to two different names ('base' and 'alias').`` on Python
3.6 and later.
``alias`` is not cached. Where the problem can be detected (Python 3.6 and
later), such usage now raises ``TypeError: Cannot assign the same
cached_property to two different names ('base' and 'alias').``
Use this instead::