/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/debug.py

  • Committer: Vincent Ladeuil
  • Date: 2011-08-20 07:49:15 UTC
  • mto: This revision was merged to the branch mainline in revision 6087.
  • Revision ID: v.ladeuil+lp@free.fr-20110820074915-kjh3a6re56pvatit
Delay the required imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
for a list of the available options.
25
25
"""
26
26
 
27
 
import pdb
28
 
import sys
29
 
 
30
27
debug_flags = set()
31
28
 
32
29
 
55
52
 
56
53
       from bzrlib import debug; debug.set_trace()
57
54
    """
 
55
    import pdb
 
56
    import sys
58
57
    pdb.Pdb(stdin=sys.__stdin__, stdout=sys.__stdout__
59
58
            ).set_trace(sys._getframe().f_back)