Skip to content

Commit 8407f36

Browse files
committed
Remove unnecessary "ordinary" characterization
1 parent 305f77f commit 8407f36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Doc/glossary.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ Glossary
137137
atomic operation
138138
An operation that appears to execute as a single, indivisible step: no
139139
other thread can observe it half-done, and its effects become visible all
140-
at once. Python does not guarantee that ordinary high-level statements
141-
are atomic (for example, ``x += 1`` performs multiple bytecode operations
142-
and is not atomic). Atomicity is only guaranteed where explicitly
143-
documented. See also :term:`race condition` and :term:`data race`.
140+
at once. Python does not guarantee that high-level statements are atomic
141+
(for example, ``x += 1`` performs multiple bytecode operations and is not
142+
atomic). Atomicity is only guaranteed where explicitly documented. See
143+
also :term:`race condition` and :term:`data race`.
144144

145145
attached thread state
146146

0 commit comments

Comments
 (0)