Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Debugging Python using GDB

Debugging Python using GDB

Figuring out why a Python daemon is hanging doesn't have to be so hard!

Nylas

May 31, 2016
Tweet

More Decks by Nylas

Other Decks in Programming

Transcript

  1. @app.before_request def start(): # fingers crossed! print ‘REQUEST ‘ +

    request if not request.user: … Modifying Python libraries in /usr/lib/python
  2. def f(): x = 0 d = dict(v=1, y='L') while

    True: x = x + 2 print x f()