show/hide this revision's text 2 better info on Werkzeug debugger

My debugging toolbox for GAE:

  • standard Python logging as a substitute for print statements
  • Werkzeug debugger if I do not want to go to the console log on each error (not everything works, most notably interactive interpreter session)
  • interactive console at http://localhost:8080/%5Fah/admin/interactive (not as good as Django's python manage.py shell but still...)

Symbolic debuggers are not so valued as elsewhere, possibly because Python's superior introspection and reflection mechanisms.

show/hide this revision's text 1

My debugging toolbox for GAE: