/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/tests/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-06 19:35:39 UTC
  • mfrom: (4086.1.4 hpss-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090306193539-h0q6dlyayhgcehta
(robertc, andrew) Add Branch.get_tags_dict RPC;
        Add optional 'fetch_spec' argument to Repository.fetch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
776
776
        TestCase._active_threads = threading.activeCount()
777
777
        self.addCleanup(self._check_leaked_threads)
778
778
 
 
779
    def debug(self):
 
780
        # debug a frame up.
 
781
        import pdb
 
782
        pdb.Pdb().set_trace(sys._getframe().f_back)
 
783
 
779
784
    def exc_info(self):
780
785
        absent_attr = object()
781
786
        exc_info = getattr(self, '_exc_info', absent_attr)