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?).