From 3b64e2b77570c73a0d7092124fa73439e0fb4305 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 12 Feb 2019 15:12:14 -0500 Subject: [PATCH] Refs #29478 -- Clarified cached_property 2.2 release note. --- docs/releases/2.2.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/releases/2.2.txt b/docs/releases/2.2.txt index 37056866e1c..1fe5af93fee 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::