Commit fc59e5c7 authored by Mariatta's avatar Mariatta Committed by GitHub

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

(cherry picked from commit 8eb531d9)
parent f1a696ef
......@@ -113,11 +113,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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment