~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Martin Pool
  • Date: 2007-04-24 05:02:04 UTC
  • mfrom: (2449 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2450.
  • Revision ID: mbp@sourcefrog.net-20070424050204-bfkc1qiq0axt5f14
Merge trunk & fix NEWS conflict

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
from cStringIO import StringIO
40
40
import os
 
41
import sys
41
42
 
42
43
from bzrlib.lazy_import import lazy_import
43
44
lazy_import(globals(), """
119
120
MERGE_MODIFIED_HEADER_1 = "BZR merge-modified list format 1"
120
121
CONFLICT_HEADER_1 = "BZR conflict list format 1"
121
122
 
 
123
ERROR_PATH_NOT_FOUND = 3    # WindowsError errno code, equivalent to ENOENT
 
124
 
122
125
 
123
126
@deprecated_function(zero_thirteen)
124
127
def gen_file_id(name):
2119
2122
            current_disk = disk_iterator.next()
2120
2123
            disk_finished = False
2121
2124
        except OSError, e:
2122
 
            if e.errno != errno.ENOENT:
 
2125
            if not (e.errno == errno.ENOENT or
 
2126
                (sys.platform == 'win32' and e.errno == ERROR_PATH_NOT_FOUND)):
2123
2127
                raise
2124
2128
            current_disk = None
2125
2129
            disk_finished = True