diff options
author | Fred Drake <fdrake@acm.org> | 2001-04-05 18:31:27 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-04-05 18:31:27 (GMT) |
commit | 4cf1227e56d12d5ef890ac039e84e7d6e128c407 (patch) | |
tree | 0fdffbc61dff5fef3a716aa347348faf8c9fa227 /Doc | |
parent | f459d852e54f6ff6c1de153e915607ab4256adf8 (diff) | |
download | cpython-4cf1227e56d12d5ef890ac039e84e7d6e128c407.zip cpython-4cf1227e56d12d5ef890ac039e84e7d6e128c407.tar.gz cpython-4cf1227e56d12d5ef890ac039e84e7d6e128c407.tar.bz2 |
Change {\em ...} to \emph{...} for consistency with the rest of the Python
documentation.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libdoctest.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libdoctest.tex b/Doc/lib/libdoctest.tex index 8adbc9d..6d19259 100644 --- a/Doc/lib/libdoctest.tex +++ b/Doc/lib/libdoctest.tex @@ -207,7 +207,7 @@ from \module{M}'s globals are skipped, all names reached from \subsection{What's the Execution Context?} By default, each time testmod finds a docstring to test, it uses a -{\em copy} of \module{M}'s globals, so that running tests on a module +\emph{copy} of \module{M}'s globals, so that running tests on a module doesn't change the module's real globals, and so that one test in \module{M} can't leave behind crumbs that accidentally allow another test to work. This means examples can freely use any names defined at top-level |