summaryrefslogtreecommitdiff
path: root/docs/releases/2.2.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2019-02-12 15:12:14 -0500
committerTim Graham <timograham@gmail.com>2019-02-12 18:17:30 -0500
commit3b64e2b77570c73a0d7092124fa73439e0fb4305 (patch)
tree39f94404529107aea8e342e92bb2ef96a3a4fc2e /docs/releases/2.2.txt
parent15715bf2a2303b8f24edefc6c517cad7294edbe9 (diff)
Refs #29478 -- Clarified cached_property 2.2 release note.
Diffstat (limited to 'docs/releases/2.2.txt')
-rw-r--r--docs/releases/2.2.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/releases/2.2.txt b/docs/releases/2.2.txt
index 37056866e1..1fe5af93fe 100644
--- a/docs/releases/2.2.txt
+++ b/docs/releases/2.2.txt
@@ -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::