File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ The :mod:`dummy_threading` module is provided for situations where
31
31
32
32
.. impl-detail ::
33
33
34
- Due to the :term: `Global Interpreter Lock `, in CPython only one thread
34
+ In CPython, due to the :term: `Global Interpreter Lock `, only one thread
35
35
can execute Python code at once (even though certain performance-oriented
36
36
libraries might overcome this limitation).
37
- If you want your application to make better of use of the computational
37
+ If you want your application to make better use of the computational
38
38
resources of multi-core machines, you are advised to use
39
39
:mod: `multiprocessing `. However, threading is still an appropriate model
40
40
if you want to run multiple I/O-bound tasks simultaneously.
You can’t perform that action at this time.
0 commit comments