/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/store/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-10-01 07:56:03 UTC
  • mfrom: (3224.5.40 faster-startup)
  • Revision ID: pqm@pqm.ubuntu.com-20081001075603-s9nynw8y85fmrprj
Reduce startup time by a small amount. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
"""
26
26
 
27
27
import os
28
 
from cStringIO import StringIO
29
 
import urllib
30
 
from zlib import adler32
31
28
 
32
 
import bzrlib
33
29
from bzrlib import (
34
30
    errors,
35
 
    osutils,
36
 
    symbol_versioning,
37
 
    urlutils,
38
31
    versionedfile,
39
32
    )
40
 
from bzrlib.errors import BzrError, UnlistableStore, TransportNotPossible
41
 
from bzrlib.symbol_versioning import (
42
 
    deprecated_function,
43
 
    )
 
33
from bzrlib.errors import BzrError, UnlistableStore
44
34
from bzrlib.trace import mutter
45
 
from bzrlib.transport import Transport
46
 
from bzrlib.transport.local import LocalTransport
47
35
 
48
36
######################################################################
49
37
# stores