~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-13 13:43:47 UTC
  • mto: This revision was merged to the branch mainline in revision 1869.
  • Revision ID: john@arbash-meinel.com-20060713134347-3e3fe280e0bd3ac9
Move the functions/regexes to be static members

Show diffs side-by-side

added added

removed removed

Lines of Context:
273
273
                    combined[-1][1] = end
274
274
                else:
275
275
                    combined.append([start, end])
276
 
                prev_end = end 
 
276
                prev_end = end
277
277
 
278
278
        mutter("combined %d offsets into %d ranges; tail access %d", len(offsets),
279
279
               len(combined), -max_negative)
280
280
 
281
281
        return combined, -max_negative
 
282
 
282
283
    def put(self, relpath, f, mode=None):
283
284
        """Copy the file-like or string object into the location.
284
285