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.
Created on 2010年01月30日 18:00 by gz, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg98573 - (view) | Author: Martin (gz) * | Date: 2010年01月30日 18:00 | |
Prior to being split up into a package, unittest had an extensible method of trimming uninteresting, testing-framework related parts from tracebacks. As an unintended side effect, this is no longer the case, only modules actually named "unittest" are excluded. Code depending on the old method exists in a number of different projects, and there is no benefit to breaking them. More details and discussion of this issue on python-dev can be read at: <http://mail.python.org/pipermail/python-dev/2009-December/094734.html> Reverting this change is trivial, something along the lines of: --- old/Lib/unittest/case.py +++ new/Lib/unittest/case.py @@ -9,7 +9,9 @@ from . import result, util +__unittest = True + class SkipTest(Exception): """ Raise this exception in a test to skip it. --- old/Lib/unittest/result.py +++ new/Lib/unittest/result.py @@ -94,11 +94,7 @@ return ''.join(traceback.format_exception(exctype, value, tb)) def _is_relevant_tb_level(self, tb): - globs = tb.tb_frame.f_globals - is_relevant = '__name__' in globs and \ - globs["__name__"].startswith("unittest") - del globs - return is_relevant + return tb.tb_frame.f_globals.has_key('__unittest') def _count_relevant_tb_levels(self, tb): length = 0 |
|||
| msg101471 - (view) | Author: Michael Foord (michael.foord) * (Python committer) | Date: 2010年03月22日 00:07 | |
Committed revision 79263. As external modules are already using __unittest it would be backwards incompatible not to restore the functionality. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:57 | admin | set | github: 52063 |
| 2010年03月22日 00:07:43 | michael.foord | set | status: open -> closed resolution: fixed messages: + msg101471 stage: needs patch -> resolved |
| 2010年01月30日 18:35:53 | brian.curtin | set | priority: normal nosy: + michael.foord, brian.curtin stage: needs patch |
| 2010年01月30日 18:00:48 | gz | create | |