Skip to content

Commit a9a3978

Browse files
Fixing bug raised in blog post Feature walkthrough Python 3.7 (#74)
1 parent d67cd6d commit a9a3978

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2019-01-13-python-3-7-feature-walkthrough.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ learning Python, I am using the same API for putting breakpoints. With this
2929
release, ```breakpoint()``` is introduced as a built-in function. Because it is
3030
in a built-in scope, you don't have to import it from any module. You can call
3131
this function to put breakpoints in your code. This approach is handier than
32-
importing ```pdf.set_trace()```.
32+
importing ```pdb.set_trace()```.
3333

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

0 commit comments

Comments
 (0)