bpo-29709: Improve Boolean Operations documentation (#433) (#437)

(cherry picked from commit 8eb531d9db)
This commit is contained in:
Mariatta 2017-03-03 13:24:13 -08:00 committed by GitHub
parent 9d07aceeda
commit 1936ba93c9

View file

@ -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