This website requires JavaScript.
Explore
Help
Sign In
Mirror
/
cpython
mirror of
https://github.com/python/cpython
Watch
4
Star
1
Fork
You've already forked cpython
0
Code
Issues
Releases
Wiki
Activity
289898cdbb
cpython
/
Lib
/
test
/
test_difflib.py
4 lines
99 B
Python
Raw
Normal View
History
Unescape
Escape
Remove test_doctest's expected-output file. Change test_doctest and test_difflib to pass regrtest's notion of verbosity on to doctest. Add explanation for a dozen "new" things to test/README.
2001-05-23 04:46:36 -03:00
from
test_support
import
verbose
Moved SequenceMatcher from ndiff into new std library module difflib.py. Guido told me to do this <wink>. Greatly expanded docstrings, and fleshed out with examples. New std test. Added new get_close_matches() function for ESR. Needs docs, but LaTeXification of the module docstring is all it needs. \CVS: ----------------------------------------------------------------------
2001-02-10 04:00:53 -04:00
import
doctest
,
difflib
Remove test_doctest's expected-output file. Change test_doctest and test_difflib to pass regrtest's notion of verbosity on to doctest. Add explanation for a dozen "new" things to test/README.
2001-05-23 04:46:36 -03:00
doctest
.
testmod
(
difflib
,
verbose
=
verbose
)