/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/progress.py

  • Committer: Martin Pool
  • Date: 2006-03-20 22:32:41 UTC
  • mto: This revision was merged to the branch mainline in revision 1621.
  • Revision ID: mbp@sourcefrog.net-20060320223241-95ba66352fd77026
Cleanup and document some check code

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
        else:
96
96
            return None
97
97
 
98
 
    def bottom(self):
99
 
        if len(self._stack) != 0:
100
 
            return self._stack[0]
101
 
        else:
102
 
            return None
103
 
 
104
98
    def get_nested(self):
105
99
        """Return a nested progress bar."""
106
100
        if len(self._stack) == 0:
433
427
    def clear(self):
434
428
        pass
435
429
 
436
 
    def note(self, *args, **kwargs):
437
 
        self.parent.note(*args, **kwargs)
438
 
 
439
430
 
440
431
def str_tdelta(delt):
441
432
    if delt is None: