SF #515005, change "1 + ''" (which pychecker warns about being invalid)

into "raise Exception".
This commit is contained in:
Neal Norwitz 2002-02-11 18:26:02 +00:00
parent f7fdedc320
commit 83bd70a7fa
1 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ class Bdb:
def set_trace(self):
"""Start debugging from here."""
try:
1 + ''
raise Exception
except:
frame = sys.exc_info()[2].tb_frame.f_back
self.reset()
@ -188,7 +188,7 @@ class Bdb:
# no breakpoints; run without debugger overhead
sys.settrace(None)
try:
1 + '' # raise an exception
raise Exception
except:
frame = sys.exc_info()[2].tb_frame.f_back
while frame and frame is not self.botframe: