~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavestore.py

  • Committer: Martin Pool
  • Date: 2005-09-16 09:39:37 UTC
  • Revision ID: mbp@sourcefrog.net-20050916093937-026fbeac6ee725b7
- InventoryEntry.copy() should copy entry version

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
 
30
30
class WeaveStore(object):
31
 
    """Collection of several weave files in a directory.
32
 
 
33
 
    This has some shortcuts for reading and writing them.
34
 
    """
 
31
    """Collection of several weave files."""
35
32
    def __init__(self, dir):
36
33
        self._dir = dir
37
34