]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Minor change to match the style guide.
authorFred Drake <fdrake@acm.org>
Sat, 14 Jul 2001 02:27:22 +0000 (02:27 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 14 Jul 2001 02:27:22 +0000 (02:27 +0000)
Doc/ext/ext.tex

index 5ad9be4aa5b4d8a8bdfad805adc90317af26f2f0..eb50b2808e02e6d4de696caebcd9a54f4c9ff4ba 100644 (file)
@@ -1439,7 +1439,7 @@ lock protecting Python's entire object space.  However, it is possible
 to temporarily release this lock using the macro
 \code{Py_BEGIN_ALLOW_THREADS}, and to re-acquire it using
 \code{Py_END_ALLOW_THREADS}.  This is common around blocking I/O
-calls, to let other threads use the CPU while waiting for the I/O to
+calls, to let other threads use the processor while waiting for the I/O to
 complete.  Obviously, the following function has the same problem as
 the previous one: