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.DocTestCase.debug" clears "test.globs" too early
Type: behavior Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: dmaurer, georg.brandl
Priority: normal Keywords:

Created on 2008-05-05 09:32 by dmaurer, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg66262 - (view) Author: Dieter Maurer (dmaurer) Date: 2008-05-05 09:32
"doctest.DocTestCase.debug" calls "DebugRunner.run" without
"clear_globs=False". As a consequence, already the runner clears
"test.globs" and it is no longer available to "tearDown" (where
is it cleared again).
msg66741 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-05-12 17:04
Thanks, fixed in r63174.
History
Date User Action Args
2022-04-11 14:56:34adminsetgithub: 47016
2008-05-12 17:04:30georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg66741
nosy: + georg.brandl
2008-05-05 09:32:25dmaurercreate