Created
November 11, 2016 12:11
-
-
Save rootcss/a5eeaea39b01322ad47e62558c784816 to your computer and use it in GitHub Desktop.
Python debugger - similar to "pry" in ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import code | |
| some_var = 100 | |
| code.interact(local=dict(globals(), **locals())) | |
| print some_var |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment