Debugging with PDB and App Engine

Python debugger (pdb) doesn't work on App Engine SDK as usual. After adding to my project: import pdb; pdb.set_trace() I got: Blocking access to skipped file "/.pdbrc" File "/usr/lib/python2.6/bdb.py", line 46, in trace_dispatch return...

comments