~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_tuned_gzip.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-03 20:18:35 UTC
  • mfrom: (1185.82.137 w-changeset)
  • Revision ID: pqm@pqm.ubuntu.com-20060603201835-1c9a1725641ccd24
Implement bundles

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
import zlib
26
26
 
27
27
 
28
 
from bzrlib import tuned_gzip
 
28
from bzrlib.tuned_gzip import *
29
29
 
30
30
 
31
31
class FakeDecompress(object):
74
74
        # read more bytes if there is less than 8 bytes (the 
75
75
        # gzip trailer) unread.
76
76
        stream = StringIO('\0\0\0\0\0\0\0\0')
77
 
        myfile = tuned_gzip.GzipFile(fileobj=stream)
 
77
        myfile = GzipFile(fileobj=stream)
78
78
        # disable the _new_member check, we are microtesting.
79
79
        myfile._new_member = False
80
80
        myfile.crc = zlib.crc32('')