]> granicus.if.org Git - python/commitdiff
- fix use of \refmodule markup
authorFred Drake <fdrake@acm.org>
Mon, 30 Dec 2002 23:00:36 +0000 (23:00 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 30 Dec 2002 23:00:36 +0000 (23:00 +0000)
- correct some module names, add hyperlinks
- wrap some long lines

Doc/lib/libdummythread.tex
Doc/lib/libdummythreading.tex
Doc/lib/libthread.tex
Doc/lib/libthreading.tex

index 56e3a033e8f1aae5078273af86757197c7237e81..f6b4c56636e7c3aa31646bcf5b807c242c2bcbcc 100644 (file)
@@ -2,11 +2,11 @@
          Drop-in replacement for the \module{thread} module}
 
 \declaremodule[dummythread]{standard}{dummy_thread}
-\modulesynopsis{Drop-in replacement for the thread module.}
+\modulesynopsis{Drop-in replacement for the \refmodule{thread} module.}
 
-This module provides a duplicate interface to the \refmodule{thread} module. It
-is meant to be imported when the \module{thread} module is not provided on a
-platform.
+This module provides a duplicate interface to the \refmodule{thread}
+module.  It is meant to be imported when the \refmodule{thread} module
+is not provided on a platform.
 
 Suggested usage is:
 
index 7eb7076c93be5387ad00b66e96dda3b508606ac2..874f596b84f1bb8edffe5624b3e12062f941f921 100644 (file)
@@ -1,12 +1,12 @@
-\section{\module{dummy_thread} ---
+\section{\module{dummy_threading} ---
          Drop-in replacement for the \module{threading} module}
 
 \declaremodule[dummythreading]{standard}{dummy_threading}
-\modulesynopsis{Drop-in replacement for the threading module.}
+\modulesynopsis{Drop-in replacement for the \refmodule{threading} module.}
 
-This module provides a duplicate interface to the \refmodule{threading} module. It
-is meant to be imported when the \module{threading} module is not provided on a
-platform.
+This module provides a duplicate interface to the
+\refmodule{threading} module.  It is meant to be imported when the
+\refmodule{thread} module is not provided on a platform.
 
 Suggested usage is:
 
index 6dfd8758b7f84dd88882798f079fb8ad905db01a..87aa3ea83f3fbc65a332749d07b89c1fc422e9bc 100644 (file)
@@ -18,8 +18,9 @@ semaphores}) are provided.
 The module is optional.  It is supported on Windows, Linux, SGI
 IRIX, Solaris 2.x, as well as on systems that have a \POSIX{} thread
 (a.k.a. ``pthread'') implementation.  For systems lacking the \module{thread}
-module, the \refmodule{dummy_thread} module is available.  It duplicates this
-module's interface and can be used as a drop-in replacement.
+module, the \refmodule[dummythread]{dummy_thread} module is available.
+It duplicates this module's interface and can be
+used as a drop-in replacement.
 \index{pthreads}
 \indexii{threads}{\POSIX}
 
index 49618293b86960a2ca3090f92fca8bb04ba1aa2f..478ca84f7f276d4cef821c2f679f368f85376149 100644 (file)
@@ -8,8 +8,9 @@
 This module constructs higher-level threading interfaces on top of the 
 lower level \refmodule{thread} module.
 
-The \refmodule{dummy_threading} module is provided for situations where
-\module{threading} cannot be used because \module{thread} is missing.
+The \refmodule[dummythreading]{dummy_threading} module is provided for
+situations where \module{threading} cannot be used because
+\refmodule{thread} is missing.
 
 This module is safe for use with \samp{from threading import *}.  It
 defines the following functions and objects: