From f7c02fdb35df95f19608752a86c2b21e32387fea Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Wed, 23 May 2001 07:46:36 +0000 Subject: 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. --- Lib/test/test_difflib.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Lib/test/test_difflib.py') diff --git a/Lib/test/test_difflib.py b/Lib/test/test_difflib.py index 99cd8ef824..3b2f8213bc 100644 --- a/Lib/test/test_difflib.py +++ b/Lib/test/test_difflib.py @@ -1,2 +1,3 @@ +from test_support import verbose import doctest, difflib -doctest.testmod(difflib, verbose=0) +doctest.testmod(difflib, verbose=verbose) -- cgit v1.2.1