Skip to content

matoles/python-debugging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Key Concepts

  • Running the debugger
    • Run
    • Breakpoints
    • Step
    • Step into
    • Callstack
    • Exploring
  • launch.json
    • File
    • Path variables
    • Args
    • Env
    • justMyCode
  • Keybindings

Example launch.json entry

{
    "name": "Fizz Buzz 10",
    "type": "python",
    "request": "launch",
    "program": "${workspaceFolder}/explore.py",
    "console": "integratedTerminal",
    "args": [
        "10"
    ],
    "env": {
        "AWS_PROFILE": "alaffia-dev",
        "ENV_PATH": ".env.example"
    },
    "justMyCode": false
}

About

Examples to demonstrate capabilities of the VS Code Python Debugger

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published