Kaydet (Commit) fc59e5c7 authored tarafından Mariatta's avatar Mariatta Kaydeden (comit) GitHub

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

(cherry picked from commit 8eb531d9)
üst f1a696ef
...@@ -113,11 +113,11 @@ Notes: ...@@ -113,11 +113,11 @@ Notes:
(1) (1)
This is a short-circuit operator, so it only evaluates the second 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) (2)
This is a short-circuit operator, so it only evaluates the second 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) (3)
``not`` has a lower priority than non-Boolean operators, so ``not a == b`` is ``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