classification
Title: "doctest.DocTestCase.debug" clears "test.globs" too early
Type: behavior
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: dmaurer, georg.brandl
Priority: Keywords:

Created on 2008-05-05 09:32 by dmaurer, last changed 2008-05-12 17:04 by georg.brandl.

Messages
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) Date: 2008-05-12 17:04
Thanks, fixed in r63174.
History
Date User Action Args
2008-05-12 17:04:30georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg66741
nosy: + georg.brandl
2008-05-05 09:32:25dmaurercreate