Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _posts/2019-01-13-python-3-7-feature-walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ learning Python, I am using the same API for putting breakpoints. With this
release, ```breakpoint()``` is introduced as a built-in function. Because it is
in a built-in scope, you don't have to import it from any module. You can call
this function to put breakpoints in your code. This approach is handier than
importing ```pdf.set_trace()```.
importing ```pdb.set_trace()```.

![Breakpoint function in Python 3.7](/assets/images/walkthrough_python_3_7/breakpoint_example.gif)

Expand Down