From: Fred Drake Date: Sat, 14 Jul 2001 02:27:22 +0000 (+0000) Subject: Minor change to match the style guide. X-Git-Tag: v2.2a3~1191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7a889ceb1e52dec4e5c77ae8ea3143a009270e1d;p=thirdparty%2FPython%2Fcpython.git Minor change to match the style guide. --- diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index 5ad9be4aa5b4..eb50b2808e02 100644 --- a/Doc/ext/ext.tex +++ b/Doc/ext/ext.tex @@ -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: