~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: Jelmer Vernooij
  • Date: 2011-05-16 13:39:39 UTC
  • mto: (5923.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 5925.
  • Revision ID: jelmer@samba.org-20110516133939-8u1pc9utas3uw1lt
Require a unicode prompt to be passed into all methods that prompt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    )
49
49
 
50
50
from bzrlib.static_tuple import StaticTuple
51
 
from bzrlib.symbol_versioning import (
52
 
    deprecated_in,
53
 
    deprecated_method,
54
 
    )
55
51
 
56
52
 
57
53
class InventoryEntry(object):
104
100
    InventoryDirectory('2325', 'wibble', parent_id='123', revision=None)
105
101
    >>> i.path2id('src/wibble')
106
102
    '2325'
 
103
    >>> '2325' in i
 
104
    True
107
105
    >>> i.add(InventoryFile('2326', 'wibble.c', '2325'))
108
106
    InventoryFile('2326', 'wibble.c', parent_id='2325', sha1=None, len=None, revision=None)
109
107
    >>> i['2326']
172
170
        candidates = {}
173
171
        # identify candidate head revision ids.
174
172
        for inv in previous_inventories:
175
 
            if inv.has_id(self.file_id):
 
173
            if self.file_id in inv:
176
174
                ie = inv[self.file_id]
177
175
                if ie.revision in candidates:
178
176
                    # same revision value in two different inventories:
631
629
    inserted, other than through the Inventory API.
632
630
    """
633
631
 
634
 
    @deprecated_method(deprecated_in((2, 4, 0)))
635
632
    def __contains__(self, file_id):
636
633
        """True if this entry contains a file with given id.
637
634
 
638
635
        >>> inv = Inventory()
639
636
        >>> inv.add(InventoryFile('123', 'foo.c', ROOT_ID))
640
637
        InventoryFile('123', 'foo.c', parent_id='TREE_ROOT', sha1=None, len=None, revision=None)
641
 
        >>> inv.has_id('123')
 
638
        >>> '123' in inv
642
639
        True
643
 
        >>> inv.has_id('456')
 
640
        >>> '456' in inv
644
641
        False
645
642
 
646
643
        Note that this method along with __iter__ are not encouraged for use as
759
756
            if (not yield_parents and specific_file_ids is not None and
760
757
                len(specific_file_ids) == 1):
761
758
                file_id = list(specific_file_ids)[0]
762
 
                if self.has_id(file_id):
 
759
                if file_id in self:
763
760
                    yield self.id2path(file_id), self[file_id]
764
761
                return
765
762
            from_dir = self.root
775
772
            parents = set()
776
773
            byid = self
777
774
            def add_ancestors(file_id):
778
 
                if not byid.has_id(file_id):
 
775
                if file_id not in byid:
779
776
                    return
780
777
                parent_id = byid[file_id].parent_id
781
778
                if parent_id is None:
965
962
 
966
963
    >>> inv.path2id('hello.c')
967
964
    '123-123'
968
 
    >>> inv.has_id('123-123')
 
965
    >>> '123-123' in inv
969
966
    True
970
967
 
971
968
    There are iterators over the contents:
1234
1231
        >>> inv = Inventory()
1235
1232
        >>> inv.add(InventoryFile('123', 'foo.c', ROOT_ID))
1236
1233
        InventoryFile('123', 'foo.c', parent_id='TREE_ROOT', sha1=None, len=None, revision=None)
1237
 
        >>> inv.has_id('123')
 
1234
        >>> '123' in inv
1238
1235
        True
1239
1236
        >>> del inv['123']
1240
 
        >>> inv.has_id('123')
 
1237
        >>> '123' in inv
1241
1238
        False
1242
1239
        """
1243
1240
        ie = self[file_id]