~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/memorytree.py

  • Committer: Jelmer Vernooij
  • Date: 2011-03-06 18:10:47 UTC
  • mto: This revision was merged to the branch mainline in revision 5701.
  • Revision ID: jelmer@samba.org-20110306181047-j3ychbs20m297tyf
Move is_control_filename() from Tree to MutableTree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
        self._locks = 0
50
50
        self._lock_mode = None
51
51
 
 
52
    def is_control_filename(self, filename):
 
53
        # Memory tree doesn't have any control filenames
 
54
        return False
 
55
 
52
56
    @needs_tree_write_lock
53
57
    def _add(self, files, ids, kinds):
54
58
        """See MutableTree._add."""