We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 623fe0e commit 996df0eCopy full SHA for 996df0e
1 file changed
docs/TRACEBACKS.md
@@ -277,13 +277,11 @@ Here is an example of how to use the debugger based on the code earlier:
277
In python 3.7 and newer there is an easier way to create breakpoints You can simply write `breakpoint()` where you want to create a breakpoint.
278
279
```python
280
-import pdb
281
-
282
def add(num1, num2):
283
breakpoint()
284
return num1 + num2
285
286
-pdb.set_trace()
+breakpoint()
287
sum = add(1,5)
288
print(sum)
289
```
0 commit comments