Skip to content

Commit fc59e5c

Browse files
authored
bpo-29709: Improve Boolean Operations documentation (#433) (#438)
(cherry picked from commit 8eb531d)
1 parent f1a696e commit fc59e5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/stdtypes.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ Notes:
113113

114114
(1)
115115
This is a short-circuit operator, so it only evaluates the second
116-
argument if the first one is :const:`False`.
116+
argument if the first one is false.
117117

118118
(2)
119119
This is a short-circuit operator, so it only evaluates the second
120-
argument if the first one is :const:`True`.
120+
argument if the first one is true.
121121

122122
(3)
123123
``not`` has a lower priority than non-Boolean operators, so ``not a == b`` is

0 commit comments

Comments
 (0)