~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Robey Pointer
  • Date: 2006-09-08 18:46:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1996.
  • Revision ID: robey@lag.net-20060908184629-e3fc4c61ca21508c
pychecker is on crack; go back to using 'is None'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
942
942
        if not self.has_filename(to_name):
943
943
            raise BzrError("destination %r not in working directory" % to_abs)
944
944
        to_dir_id = inv.path2id(to_name)
945
 
        if to_dir_id == None and to_name != '':
 
945
        if to_dir_id is None and to_name != '':
946
946
            raise BzrError("destination %r is not a versioned directory" % to_name)
947
947
        to_dir_ie = inv[to_dir_id]
948
948
        if to_dir_ie.kind != 'directory':
954
954
            if not self.has_filename(f):
955
955
                raise BzrError("%r does not exist in working tree" % f)
956
956
            f_id = inv.path2id(f)
957
 
            if f_id == None:
 
957
            if f_id is None:
958
958
                raise BzrError("%r is not versioned" % f)
959
959
            name_tail = splitpath(f)[-1]
960
960
            dest_path = pathjoin(to_name, name_tail)
999
999
            raise BzrError("can't rename: new working file %r already exists" % to_rel)
1000
1000
 
1001
1001
        file_id = inv.path2id(from_rel)
1002
 
        if file_id == None:
 
1002
        if file_id is None:
1003
1003
            raise BzrError("can't rename: old name %r is not versioned" % from_rel)
1004
1004
 
1005
1005
        entry = inv[file_id]
1011
1011
 
1012
1012
        to_dir, to_tail = os.path.split(to_rel)
1013
1013
        to_dir_id = inv.path2id(to_dir)
1014
 
        if to_dir_id == None and to_dir != '':
 
1014
        if to_dir_id is None and to_dir != '':
1015
1015
            raise BzrError("can't determine destination directory id for %r" % to_dir)
1016
1016
 
1017
1017
        mutter("rename_one:")
1200
1200
        """Yield list of PATH, IGNORE_PATTERN"""
1201
1201
        for subp in self.extras():
1202
1202
            pat = self.is_ignored(subp)
1203
 
            if pat != None:
 
1203
            if pat is not None:
1204
1204
                yield subp, pat
1205
1205
 
1206
1206
    def get_ignore_list(self):