summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libatexit.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-09-09 03:25:11 (GMT)
committerFred Drake <fdrake@acm.org>2000-09-09 03:25:11 (GMT)
commit1c4efad7707a82ad7edc346b467ecfc84913bee3 (patch)
treef97a4f26b2819b78f8162fd9354ba620a72cd0cf /Doc/lib/libatexit.tex
parent621d2bee1cfb1ca01f07a54544d969184c9e552a (diff)
downloadcpython-1c4efad7707a82ad7edc346b467ecfc84913bee3.zip
cpython-1c4efad7707a82ad7edc346b467ecfc84913bee3.tar.gz
cpython-1c4efad7707a82ad7edc346b467ecfc84913bee3.tar.bz2
Move the "See also" section to a location more consistent with other
module sections. Properly mark the name of the module in the content of the reference there.
Diffstat (limited to 'Doc/lib/libatexit.tex')
-rw-r--r--Doc/lib/libatexit.tex12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/lib/libatexit.tex b/Doc/lib/libatexit.tex
index a30c175..6a72cb3 100644
--- a/Doc/lib/libatexit.tex
+++ b/Doc/lib/libatexit.tex
@@ -42,6 +42,12 @@ later.
\end{funcdesc}
+\begin{seealso}
+ \seemodule{readline}{Useful example of \module{atexit} to read and
+ write \refmodule{readline} history files.}
+\end{seealso}
+
+
\subsection{\module{atexit} Example \label{atexit-example}}
The following simple example demonstrates how a module can initialize
@@ -66,9 +72,3 @@ def savecounter():
import atexit
atexit.register(savecounter)
\end{verbatim}
-
-
-\begin{seealso}
- \seemodule{readline}{Useful example of atexit to read and write
- \refmodule{readline} history files.}
-\end{seealso}