diff options
author | Fred Drake <fdrake@acm.org> | 2001-07-14 02:27:22 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-07-14 02:27:22 (GMT) |
commit | 7a889ceb1e52dec4e5c77ae8ea3143a009270e1d (patch) | |
tree | 437b641bac24ea9faf25408675f6b31734e8fbe4 /Doc | |
parent | 17f690f96b328b810c2df9a8840bdd3171b5ee50 (diff) | |
download | cpython-7a889ceb1e52dec4e5c77ae8ea3143a009270e1d.zip cpython-7a889ceb1e52dec4e5c77ae8ea3143a009270e1d.tar.gz cpython-7a889ceb1e52dec4e5c77ae8ea3143a009270e1d.tar.bz2 |
Minor change to match the style guide.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ext/ext.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index 5ad9be4..eb50b28 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: |