We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 288234f commit ff12faeCopy full SHA for ff12fae
1 file changed
Doc/library/threading.rst
@@ -22,10 +22,10 @@ The :mod:`dummy_threading` module is provided for situations where
22
23
.. impl-detail::
24
25
- Due to the :term:`Global Interpreter Lock`, in CPython only one thread
+ In CPython, due to the :term:`Global Interpreter Lock`, only one thread
26
can execute Python code at once (even though certain performance-oriented
27
libraries might overcome this limitation).
28
- If you want your application to make better of use of the computational
+ If you want your application to make better use of the computational
29
resources of multi-core machines, you are advised to use
30
:mod:`multiprocessing` or :class:`concurrent.futures.ProcessPoolExecutor`.
31
However, threading is still an appropriate model if you want to run
0 commit comments