~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory_delta.py

  • Committer: Andrew Bennetts
  • Date: 2009-04-02 04:29:37 UTC
  • mto: This revision was merged to the branch mainline in revision 4242.
  • Revision ID: andrew.bennetts@canonical.com-20090402042937-nyac8vi5s1z61e91
Garden module docstring a little, cleanup unused imports and inaccurate __all__.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Inventory delta serialisation.
18
18
 
19
 
See doc/developers/inventory.txt for the design and rationalisation.
 
19
See doc/developers/inventory.txt for the description of the format.
20
20
 
21
21
In this module the interesting classes are:
22
 
 - InventoryDelta - object to read/write journalled inventories.
 
22
 - InventoryDeltaSerializer - object to read/write inventory deltas.
23
23
"""
24
24
 
25
 
__all__ = ['InventoryDelta']
 
25
__all__ = ['InventoryDeltaSerializer']
26
26
 
27
27
from bzrlib import errors, lazy_regex
28
 
from bzrlib.osutils import basename, sha_string, sha_strings
 
28
from bzrlib.osutils import basename
29
29
from bzrlib import inventory
30
30
from bzrlib.revision import NULL_REVISION
31
 
from bzrlib.tsort import topo_sort
32
31
 
33
32
 
34
33
def _directory_content(entry):