File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments