~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store/text.py

  • Committer: Jelmer Vernooij
  • Date: 2009-02-23 20:55:58 UTC
  • mfrom: (4034 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4053.
  • Revision ID: jelmer@samba.org-20090223205558-1cx2k4w1zgs8r5qa
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    def _add_compressed(self, fn, f):
45
45
        from cStringIO import StringIO
46
46
        from bzrlib.osutils import pumpfile
47
 
        
 
47
 
48
48
        if isinstance(f, basestring):
49
49
            f = StringIO(f)
50
 
            
 
50
 
51
51
        sio = StringIO()
52
52
        gf = gzip.GzipFile(mode='wb', fileobj=sio)
53
53
        # if pumpfile handles files that don't fit in ram,