diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-22 21:23:22 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-22 21:23:22 (GMT) |
commit | ffbe68723a5cb124a1e018d05af9e279ae1ad6fe (patch) | |
tree | bda5a40b89973ee45d27f9685c527f6f59533b56 /Doc/lib/libthreading.tex | |
parent | 7b8b125fa6a24b7c400b4750ee204c2a56f7f596 (diff) | |
download | cpython-ffbe68723a5cb124a1e018d05af9e279ae1ad6fe.zip cpython-ffbe68723a5cb124a1e018d05af9e279ae1ad6fe.tar.gz cpython-ffbe68723a5cb124a1e018d05af9e279ae1ad6fe.tar.bz2 |
Make internal module references hyperlinks wherever it makes sense.
Diffstat (limited to 'Doc/lib/libthreading.tex')
-rw-r--r-- | Doc/lib/libthreading.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libthreading.tex b/Doc/lib/libthreading.tex index 343cc74..b9f4e05 100644 --- a/Doc/lib/libthreading.tex +++ b/Doc/lib/libthreading.tex @@ -6,7 +6,7 @@ This module constructs higher-level threading interfaces on top of the -lower level \module{thread} module. +lower level \refmodule{thread} module. This module is safe for use with \samp{from threading import *}. It defines the following functions and objects: @@ -91,7 +91,7 @@ All of the methods described below are executed atomically. A primitive lock is a synchronization primitive that is not owned by a particular thread when locked. In Python, it is currently the lowest level synchronization primitive available, implemented -directly by the \module{thread} extension module. +directly by the \refmodule{thread} extension module. A primitive lock is in one of two states, ``locked'' or ``unlocked''. It is created in the unlocked state. It has two basic methods, |