~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/repository.py

  • Committer: Martin Pool
  • Date: 2010-02-10 02:17:15 UTC
  • mto: This revision was merged to the branch mainline in revision 5028.
  • Revision ID: mbp@canonical.com-20100210021715-4jlnmcxqxod7ut19
Move or remove some unconditionally loaded code

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import os
21
21
import Queue
22
22
import sys
23
 
import tarfile
24
23
import tempfile
25
24
import threading
26
25
 
683
682
            temp.close()
684
683
 
685
684
    def _tarball_of_dir(self, dirname, compression, ofile):
 
685
        import tarfile
686
686
        filename = os.path.basename(ofile.name)
687
687
        tarball = tarfile.open(fileobj=ofile, name=filename,
688
688
            mode='w|' + compression)