Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7fdedc commit 83bd70aCopy full SHA for 83bd70a
1 file changed
Lib/bdb.py
@@ -168,7 +168,7 @@ def set_return(self, frame):
168
def set_trace(self):
169
"""Start debugging from here."""
170
try:
171
- 1 + ''
+ raise Exception
172
except:
173
frame = sys.exc_info()[2].tb_frame.f_back
174
self.reset()
@@ -188,7 +188,7 @@ def set_continue(self):
188
# no breakpoints; run without debugger overhead
189
sys.settrace(None)
190
191
- 1 + '' # raise an exception
192
193
194
while frame and frame is not self.botframe:
0 commit comments