[issue2767] "doctest.DocTestCase.debug" clears "test.globs" too early

2008-05-12 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks, fixed in r63174. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue2767] "doctest.DocTestCase.debug" clears "test.globs" too early

2008-05-05 Thread Dieter Maurer
New submission from Dieter Maurer <[EMAIL PROTECTED]>: "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). -- components: Library