~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-13 13:03:03 UTC
  • mfrom: (1767.2.2 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060613130303-e9de5dbda2e80da6
(robertc, abentley, jameinel, mpool)Various improvements to add performance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1066
1066
    try:
1067
1067
        working_kind = working_tree.kind(file_id)
1068
1068
        has_contents = True
1069
 
    except OSError, e:
1070
 
        if e.errno != errno.ENOENT:
1071
 
            raise
 
1069
    except NoSuchFile:
1072
1070
        has_contents = False
1073
1071
        contents_mod = True
1074
1072
        meta_mod = False