Skip to content

Commit

Permalink
Update Doc/library/threading.rst
Browse files Browse the repository at this point in the history
Co-authored-by: Peter Bierma <[email protected]>
  • Loading branch information
donBarbos and ZeroIntensity authored Feb 4, 2025
1 parent 115e530 commit dcfe231
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/threading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The :mod:`threading` module provides a way to run multiple threads (smaller
units of a process) concurrently within a single process. It allows for the
creation and management of threads, making it possible to execute tasks in
parallel, sharing memory space. Threads are particularly useful when tasks are
I/O-bound, such as reading from or writing to files, or making network requests,
I/O-bound, such as file operations or making network requests,
where much of the time is spent waiting for external resources.

Unlike the :mod:`multiprocessing` module, which uses separate processes to
Expand Down

0 comments on commit dcfe231

Please sign in to comment.