This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: doctest: Add Tester params to DocTestSuite
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: edloper Nosy List: edloper, loewis
Priority: normal Keywords: patch

Created on 2004-04-10 19:56 by edloper, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
doctest_doctestsuite_options.diff edloper, 2004-04-10 19:56 Diff against doctest.py
Messages (4)
msg45730 - (view) Author: Edward Loper (edloper) * (Python triager) Date: 2004-04-10 19:56
This diff adds the following parameters to 
DocTestSuite: globs, verbose, isprivate, optionflags.  
The new parameters are simply passed on to the 
Tester object that the DocTestSuite wraps.

This match was made against revision 1.33 of 
doctest.py
msg45731 - (view) Author: Edward Loper (edloper) * (Python triager) Date: 2004-04-10 19:59
Logged In: YES 
user_id=195958

If this patch looks good, I'd be happy to write a patch for 
the docs & test cases.
msg45732 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-05-31 19:05
Logged In: YES 
user_id=21627

The patch looks good in principle. Please submit test cases
and documentation.
msg45733 - (view) Author: Edward Loper (edloper) * (Python triager) Date: 2004-10-02 15:25
Logged In: YES 
user_id=195958

The desired change was included in the new doctest 
implementation.  (Except for the verbose flag; verbosity is 
controlled via the UnitTest framework)
History
Date User Action Args
2022-04-11 14:56:03adminsetgithub: 40136
2004-04-10 19:56:14edlopercreate