From 147806fa698db053dc6b9c26f77c2d672e699570 Mon Sep 17 00:00:00 2001 From: ultimatecoder Date: Sun, 13 Jan 2019 02:18:45 +0530 Subject: [PATCH] Fixing bug raised in blog post Feature walkthrough Python 3.7 --- _posts/2019-01-13-python-3-7-feature-walkthrough.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2019-01-13-python-3-7-feature-walkthrough.md b/_posts/2019-01-13-python-3-7-feature-walkthrough.md index 77660a1..6abf340 100644 --- a/_posts/2019-01-13-python-3-7-feature-walkthrough.md +++ b/_posts/2019-01-13-python-3-7-feature-walkthrough.md @@ -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)