#3390: replace a remaining has_key().

This commit is contained in:
Georg Brandl 2008-07-18 19:30:10 +00:00
parent 74bbc79d10
commit 56af5fcab7
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ class TestResult:
return ''.join(traceback.format_exception(exctype, value, tb))
def _is_relevant_tb_level(self, tb):
return tb.tb_frame.f_globals.has_key('__unittest')
return '__unittest' in tb.tb_frame.f_globals
def _count_relevant_tb_levels(self, tb):
length = 0