/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 breezy/dirstate.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
import time
231
231
import zlib
232
232
 
233
 
from brzlib import (
 
233
from breezy import (
234
234
    cache_utf8,
235
235
    config,
236
236
    debug,
2288
2288
        """Iterate over all the entries in the dirstate.
2289
2289
 
2290
2290
        Each yelt item is an entry in the standard format described in the
2291
 
        docstring of brzlib.dirstate.
 
2291
        docstring of breezy.dirstate.
2292
2292
        """
2293
2293
        self._read_dirblocks_if_needed()
2294
2294
        for directory in self._dirblocks:
4259
4259
 
4260
4260
# Try to load the compiled form if possible
4261
4261
try:
4262
 
    from brzlib._dirstate_helpers_pyx import (
 
4262
    from breezy._dirstate_helpers_pyx import (
4263
4263
        _read_dirblocks,
4264
4264
        bisect_dirblock,
4265
4265
        _bisect_path_left,
4271
4271
        )
4272
4272
except ImportError, e:
4273
4273
    osutils.failed_to_load_extension(e)
4274
 
    from brzlib._dirstate_helpers_py import (
 
4274
    from breezy._dirstate_helpers_py import (
4275
4275
        _read_dirblocks,
4276
4276
        bisect_dirblock,
4277
4277
        _bisect_path_left,