~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/message.py

  • Committer: Andrew Bennetts
  • Date: 2008-11-20 10:30:56 UTC
  • mfrom: (3695.2.6 hpss-push-rpc)
  • mto: This revision was merged to the branch mainline in revision 3981.
  • Revision ID: andrew.bennetts@canonical.com-20081120103056-05g6c6nv30ceyxdx
Merge RemoteVersionedFiles class from hpss-push-rpc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
281
281
            body_bytes = ''.join(self._bytes_parts)
282
282
            if 'hpss' in debug.debug_flags:
283
283
                mutter('              %d body bytes read', len(body_bytes))
 
284
                mutter('              body %r...', repr(body_bytes[:40]))
284
285
            self._body = StringIO(body_bytes)
285
286
            self._bytes_parts = None
286
287
        return self._body.read(count)