Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4581cfa3
Commit
4581cfa3
authored
Nov 22, 2002
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #486438: Make module argument to testmod optional.
parent
f86e8ef3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
5 deletions
+20
-5
Doc/lib/libdoctest.tex
Doc/lib/libdoctest.tex
+5
-1
Lib/doctest.py
Lib/doctest.py
+12
-4
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Doc/lib/libdoctest.tex
View file @
4581cfa3
...
...
@@ -152,6 +152,10 @@ if __name__ == "__main__":
_
test()
\end{verbatim}
If you want to test the module as the main module, you don't need to
pass M to
\function
{
testmod
}
; in this case, it will test the current
module.
Then running the module as a script causes the examples in the docstrings
to get executed and verified:
...
...
@@ -392,7 +396,7 @@ definition of \function{_test()} is
\begin{verbatim}
def
_
test():
import doctest, sys
doctest.testmod(
sys.modules["
__
main
__
"]
)
doctest.testmod()
\end{verbatim}
\end{enumerate}
...
...
Lib/doctest.py
View file @
4581cfa3
...
...
@@ -1044,12 +1044,13 @@ see its docs for details.
master
=
None
def
testmod
(
m
,
name
=
None
,
globs
=
None
,
verbose
=
None
,
isprivate
=
None
,
def
testmod
(
m
=
None
,
name
=
None
,
globs
=
None
,
verbose
=
None
,
isprivate
=
None
,
report
=
1
):
"""m, name=None, globs=None, verbose=None, isprivate=None, report=1
"""m
=None
, name=None, globs=None, verbose=None, isprivate=None, report=1
Test examples in docstrings in functions and classes reachable from
module m, starting with m.__doc__. Private names are skipped.
Test examples in docstrings in functions and classes reachable
from module m (or the current module if m is not supplied), starting
with m.__doc__. Private names are 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;
...
...
@@ -1090,6 +1091,13 @@ def testmod(m, name=None, globs=None, verbose=None, isprivate=None,
global
master
if
m
is
None
:
import
sys
# DWA - m will still be None if this wasn't invoked from the command
# line, in which case the following TypeError is about as good an error
# as we should expect
m
=
sys
.
modules
.
get
(
'__main__'
)
if
not
_ismodule
(
m
):
raise
TypeError
(
"testmod: module required; "
+
`m`
)
if
name
is
None
:
...
...
Misc/NEWS
View file @
4581cfa3
...
...
@@ -389,6 +389,9 @@ Extension modules
Library
-------
- doctest.testmod can now be called without argument, which means to
test the current module.
- When cancelling a server that implemented threading with a keyboard
interrupt, the server would shut down but not terminate (waiting on
client threads). A new member variable, daemon_threads, was added to
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment