Skip to content

Commit 14d8179

Browse files
committed
Fix lint errors
1 parent 5da539a commit 14d8179

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Doc/glossary.rst

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)