~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree_4.py

  • Committer: Martin Pool
  • Date: 2008-05-08 04:21:01 UTC
  • mto: This revision was merged to the branch mainline in revision 3415.
  • Revision ID: mbp@sourcefrog.net-20080508042101-c9c0dmqo4not47qm
Compare to None using is/is not not ==

Show diffs side-by-side

added added

removed removed

Lines of Context:
551
551
        Note: The caller is expected to take a read-lock before calling this.
552
552
        """
553
553
        relpath = self.id2path(file_id)
554
 
        if relpath == None:
 
554
        if relpath is None:
555
555
            raise AssertionError(
556
556
                "path for id {%s} is None!" % file_id)
557
557
        return self._kind(relpath)
1577
1577
 
1578
1578
    def get_file_lines(self, file_id):
1579
1579
        entry = self._get_entry(file_id=file_id)[1]
1580
 
        if entry == None:
 
1580
        if entry is None:
1581
1581
            raise errors.NoSuchId(tree=self, file_id=file_id)
1582
1582
        return self._get_weave(file_id).get_lines(entry[1][4])
1583
1583
 
1638
1638
 
1639
1639
    def kind(self, file_id):
1640
1640
        entry = self._get_entry(file_id=file_id)[1]
1641
 
        if entry == None:
 
1641
        if entry is None:
1642
1642
            raise errors.NoSuchId(tree=self, file_id=file_id)
1643
1643
        return dirstate.DirState._minikind_to_kind[entry[1][0]]
1644
1644