From e882a08a0893a202bac7a5435bfc6f8664768cdf Mon Sep 17 00:00:00 2001 From: Mariatta Wijaya Date: Fri, 3 Mar 2017 10:08:40 -0800 Subject: [PATCH] bpo-29709: Improve Boolean Operations documentation Change False into false, and True into true. --- Doc/library/stdtypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index d13fc3d9208d34..4433312fb204ec 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -108,11 +108,11 @@ Notes: (1) This is a short-circuit operator, so it only evaluates the second - argument if the first one is :const:`False`. + argument if the first one is false. (2) This is a short-circuit operator, so it only evaluates the second - argument if the first one is :const:`True`. + argument if the first one is true. (3) ``not`` has a lower priority than non-Boolean operators, so ``not a == b`` is