Clayton Parker - So you think you can PDB? - PyCon 2015

"Speaker: Clayton Parker
This talk will be an introduction to the most commonly used Python Debugger commands and what they do. Learn how to navigate and inspect code from the pdb prompt so you can better understand how it works. The Python Debugger is a valuable debugging tool for all levels of Python programmers. You should walk away being able to debug the next Python code you encounter!
Slides can be found at: speakerdeck.com/pycon2015 and github.com/PyCon/2015-slides"

Пікірлер: 9

  • @danielliao7579
    @danielliao75797 жыл бұрын

    This is really helpful, thanks a lot!

  • @kirbyurner
    @kirbyurner7 жыл бұрын

    Excellent.

  • @joselima9398
    @joselima93985 жыл бұрын

    awesome work man, thank you for cleaning this up for me. One more tool in my arsenal!

  • @freddief939
    @freddief9397 жыл бұрын

    Can someone help me get pdb++ working on Python 3 for Windows 10? After installing doing 'pip install pdbpp' in admin mode on CMD, pdb is still launching as normal, ie like this: (pdb++) and not this: (pdb++). on my linux box, i'm only able to get pdb++ working on python2.7. i'm using the latest version of pdb++ (pdbpp-0.9.1) and the latest version of python (Python 3.6.2). any help?

  • @caujka

    @caujka

    5 жыл бұрын

    probably when you did 'pip install' it went into 2.7 libraries. You might want to make sure pip installs the package into your python of choice. I suggest trying the following: - use pip3 - use virtualenv - set environment variables PYTHONPATH and PYTHONHOME before running pip (anyway, you need to make sure it's the right pip...)

  • @ricardcantm

    @ricardcantm

    5 жыл бұрын

    Make sure if its already install

  • @danielwood4786
    @danielwood47865 жыл бұрын

    What was he doing to clear the screen?

  • @Egzvorg

    @Egzvorg

    5 жыл бұрын

    Probably CTRL-L