/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/bundle/serializer/v4.py

  • Committer: Jelmer Vernooij
  • Date: 2011-09-24 12:57:04 UTC
  • mto: This revision was merged to the branch mainline in revision 6181.
  • Revision ID: jelmer@samba.org-20110924125704-ge1pb1qunm42i8a7
Move file_ids_altered_by to VersionedFileRepository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import re
20
20
 
21
21
from bzrlib import (
22
 
    diff,
23
22
    errors,
24
23
    iterablefile,
25
24
    lru_cache,
33
32
    versionedfile as _mod_versionedfile,
34
33
    )
35
34
from bzrlib.bundle import bundle_data, serializer as bundle_serializer
36
 
from bzrlib.i18n import gettext, ngettext
 
35
from bzrlib.i18n import ngettext
37
36
from bzrlib import bencode
38
37
 
39
38