]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#16978: rephrase sentence and fix typo. Initial patch by Tshepang Lekhonkhobe.
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 18 Jan 2013 17:55:46 +0000 (19:55 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 18 Jan 2013 17:55:46 +0000 (19:55 +0200)
Doc/library/threading.rst

index 43087ef153ad16af6393db043df125cc256f8535..4a0121168711aca15951712a7691468744d9ff88 100644 (file)
@@ -22,10 +22,10 @@ The :mod:`dummy_threading` module is provided for situations where
 
 .. impl-detail::
 
-   Due to the :term:`Global Interpreter Lock`, in CPython only one thread
+   In CPython, due to the :term:`Global Interpreter Lock`, only one thread
    can execute Python code at once (even though certain performance-oriented
    libraries might overcome this limitation).
-   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
    resources of multi-core machines, you are advised to use
    :mod:`multiprocessing` or :class:`concurrent.futures.ProcessPoolExecutor`.
    However, threading is still an appropriate model if you want to run