~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

Merge the _LazyGroupContentManager, et al.

This allows us to stream GroupCompressBlocks in their compressed form, and unpack them
during insert, rather than during get().

Show diffs side-by-side

added added

removed removed

Lines of Context:
3300
3300
        osutils.rmtree(dirname)
3301
3301
    except OSError, e:
3302
3302
        if sys.platform == 'win32' and e.errno == errno.EACCES:
3303
 
            sys.stderr.write(('Permission denied: '
3304
 
                                 'unable to remove testing dir '
3305
 
                                 '%s\n' % os.path.basename(dirname)))
 
3303
            sys.stderr.write('Permission denied: '
 
3304
                             'unable to remove testing dir '
 
3305
                             '%s\n%s'
 
3306
                             % (os.path.basename(dirname), e))
3306
3307
        else:
3307
3308
            raise
3308
3309