diff options
author | Fred Drake <fdrake@acm.org> | 2004-08-10 15:41:03 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-08-10 15:41:03 (GMT) |
commit | 9d92d5a9accd96d44ad5052cf26939d85400acc9 (patch) | |
tree | 141e76c42c34a5223b41e0ac441f49ff6a474aa5 /Doc/lib/libdoctest.tex | |
parent | c2388a2b9c75f5cf837678211583fd2d67b2339b (diff) | |
download | cpython-9d92d5a9accd96d44ad5052cf26939d85400acc9.zip cpython-9d92d5a9accd96d44ad5052cf26939d85400acc9.tar.gz cpython-9d92d5a9accd96d44ad5052cf26939d85400acc9.tar.bz2 |
minor changes to make this format again
Diffstat (limited to 'Doc/lib/libdoctest.tex')
-rw-r--r-- | Doc/lib/libdoctest.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libdoctest.tex b/Doc/lib/libdoctest.tex index c51ba2d..3eb7045 100644 --- a/Doc/lib/libdoctest.tex +++ b/Doc/lib/libdoctest.tex @@ -203,7 +203,7 @@ attempted. Only docstrings attached to objects belonging to module \var{m} are searched. - Return \code{(#failures, #tests)}. + Return \code{(\var{failure_count}, \var{test_count})}. Optional argument \var{name} gives the name of the module; by default, or if \code{None}, \code{\var{m}.__name__} is used. @@ -286,7 +286,7 @@ attempted. private according to Python's underscore naming convention. \deprecated{2.4}{\var{isprivate} was a stupid idea -- don't use it. If you need to skip tests based on name, filter the list returned by - \code{\class{DocTestFinder.find()} instead.} + \code{DocTestFinder.find()} instead.} % """ [XX] This is no longer true: % Advanced tomfoolery: testmod runs methods of a local instance of |