File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ Glossary
301301 The ability of a computer program to perform multiple tasks at the same
302302 time. Python provides libraries for writing programs that make use of
303303 different forms of concurrency. :mod: `asyncio ` is a library for dealing
304- with asynchronous tasks and coroutines. :mod: `threading` ` provides
304+ with asynchronous tasks and coroutines. :mod: `threading ` provides
305305 access to operating system threads and :mod: `multiprocessing ` to
306306 operating system processes. Multi-core processors can execute threads and
307307 processes on different CPU cores at the same time (see
@@ -714,10 +714,7 @@ Glossary
714714 <extension module> `. In multi-threaded programs, global state shared
715715 between threads typically requires synchronization to avoid
716716 :term: `race conditions <race condition> ` and
717- :term: `data races <data race> `. In the
718- :term: `free-threaded <free threading> ` build, :term: `per-module state `
719- is often preferred over global state for C extension modules.
720- See also :term: `per-module state `.
717+ :term: `data races <data race> `.
721718
722719 hash-based pyc
723720 A bytecode cache file that uses the hash rather than the last-modified
You can’t perform that action at this time.
0 commit comments