~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavestore.py

  • Committer: Martin Pool
  • Date: 2005-09-22 05:18:24 UTC
  • Revision ID: mbp@sourcefrog.net-20050922051824-263a54b20d3c54a4
- store control weaves in .bzr/, not mixed in with file weaves

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."""
 
31
    """Collection of several weave files in a directory.
 
32
 
 
33
    This has some shortcuts for reading and writing them.
 
34
    """
32
35
    def __init__(self, dir):
33
36
        self._dir = dir
34
37