~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-09 22:33:11 UTC
  • mfrom: (1603.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060309223311-9b952a772944e322
Merge knit utf8 and reannotate-less support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
            if not combined_offsets:
262
262
                combined_offsets = [[offset, size]]
263
263
            else:
264
 
                if (len (combined_offsets) < 50 and
 
264
                if (len (combined_offsets) < 500 and
265
265
                    combined_offsets[-1][0] + combined_offsets[-1][1] == offset):
266
266
                    # combatible offset:
267
267
                    combined_offsets.append([offset, size])