mirror of
https://github.com/python/cpython.git
synced 2026-05-15 00:48:35 -04:00
SF #515005, change "1 + ''" (which pychecker warns about being invalid)
into "raise Exception".
This commit is contained in:
+2
-2
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user