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

  • Committer: Robert Collins
  • Date: 2009-06-22 21:55:37 UTC
  • mfrom: (4469 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4470.
  • Revision ID: robertc@robertcollins.net-20090622215537-f7kxi0tui92ysiec
Resolve NEWS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
406
406
        # the buffer.
407
407
        last_buffer_length = None
408
408
        cur_buffer_length = len(self._buffer)
409
 
        while cur_buffer_length != last_buffer_length:
 
409
        last_state_handler = None
 
410
        while (cur_buffer_length != last_buffer_length
 
411
               or last_state_handler != self._state_handler):
410
412
            last_buffer_length = cur_buffer_length
 
413
            last_state_handler = self._state_handler
411
414
            self._state_handler()
412
415
            cur_buffer_length = len(self._buffer)
413
416