diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-08-10 01:41:28 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-08-10 01:41:28 (GMT) |
commit | c2388a2b9c75f5cf837678211583fd2d67b2339b (patch) | |
tree | d1534d7b49e969828596dcea7b6507acd075e58d /Lib | |
parent | 6a4e635beba3cad5f3d421cb92f9052151c927d8 (diff) | |
download | cpython-c2388a2b9c75f5cf837678211583fd2d67b2339b.zip cpython-c2388a2b9c75f5cf837678211583fd2d67b2339b.tar.gz cpython-c2388a2b9c75f5cf837678211583fd2d67b2339b.tar.bz2 |
Start rewriting doctest's LaTeX docs. Damn, this is slow going!
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/doctest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index 80a61c5..7c07131 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -1610,7 +1610,7 @@ def testmod(m=None, name=None, globs=None, verbose=None, isprivate=None, are not skipped. Also test examples reachable from dict m.__test__ if it exists and is - not None. m.__dict__ maps names to functions, classes and strings; + not None. m.__test__ maps names to functions, classes and strings; function and class docstrings are tested even if the name is private; strings are tested directly, as if they were docstrings. |