What do you suggest to get rid of pdb calls on production software? In my case, I'm developing a django website.

I don't know if I should:

  • Monkey patch pdb from settings.py (dependding on DEBUG boolean).
  • Make a pdb wrapper for our project which expose set_trace or print basic log if DEBUG = True
  • Dissalow comitting brakpoints on git hooks... (if you think it's the best idea how would you do that?).
link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

The third one. You have to enforce some commit rules. For example, run a serie of tests before a commit, etc. This way, developpers have a simple way to check if a pdb break remain. If someone commit a set_trace, he has to bake a cake for the rest of the team.

This works fine in my company :-)

edit: you may present this method to your boss as CDD (Cake Driven Developpement)

link|improve this answer
I might add that in my team, the cake has to be a lemon pie. I suggest you do the same. – Simon Aug 11 '11 at 14:58
I love the concept... I really need to suggest it to our team. Maybe I'll omit to enforce the cake to be a lemon pie... – christophe31 Aug 11 '11 at 15:43
feedback

The best option would be to have an extensive test suite, and to run the tests before pushing to production. Extraneous pdb breakpoints will prevent the tests from passing.

If you can't do that, then option 2 is the best: write a utility to break into the debugger, and make it sensitive to the state of the settings. You still have to solve the problem of how to be sure people use the wrapper rather than a raw pdb call though.

link|improve this answer
feedback

Ideally, You shouldn't be including debugging code in the first place. You can instead use a wrapper that sets breakpoints and invokes the main program for debugging, so that the main program contains no actual set_trace() calls at all.

# foo.py
print "hello"
print "goodbye"

and

#debug_foo.py
import pdb

def run_foo():
    execfile('foo.py')

db = pdb.Pdb()
db.set_break("foo.py", 2)
db.run("run_foo()")

Example:


[~]$ python foo.py 
hello
goodbye
[~]$ python foo.py 
> <string>(1)<module>()
(Pdb) continue
hello
> /home/dbornside/foo.py(1)<module>()
-> print "goodbye"
(Pdb) continue
goodbye
[~]$ 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.