~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: Vincent Ladeuil
  • Date: 2011-10-06 07:43:13 UTC
  • mfrom: (6015.33.8 2.4)
  • mto: This revision was merged to the branch mainline in revision 6192.
  • Revision ID: v.ladeuil+lp@free.fr-20111006074313-w3f2t8lgzy04pjjb
Merge 2.4 into trunk resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
279
279
    # copy posixpath.abspath, but use os.getcwdu instead
280
280
    if not posixpath.isabs(path):
281
281
        path = posixpath.join(getcwd(), path)
282
 
    return posixpath.normpath(path)
 
282
    return _posix_normpath(path)
283
283
 
284
284
 
285
285
def _posix_realpath(path):
286
286
    return posixpath.realpath(path.encode(_fs_enc)).decode(_fs_enc)
287
287
 
288
288
 
 
289
def _posix_normpath(path):
 
290
    path = posixpath.normpath(path)
 
291
    # Bug 861008: posixpath.normpath() returns a path normalized according to
 
292
    # the POSIX standard, which stipulates (for compatibility reasons) that two
 
293
    # leading slashes must not be simplified to one, and only if there are 3 or
 
294
    # more should they be simplified as one. So we treat the leading 2 slashes
 
295
    # as a special case here by simply removing the first slash, as we consider
 
296
    # that breaking POSIX compatibility for this obscure feature is acceptable.
 
297
    # This is not a paranoid precaution, as we notably get paths like this when
 
298
    # the repo is hosted at the root of the filesystem, i.e. in "/".    
 
299
    if path.startswith('//'):
 
300
        path = path[1:]
 
301
    return path
 
302
 
 
303
 
289
304
def _win32_fixdrive(path):
290
305
    """Force drive letters to be consistent.
291
306
 
379
394
abspath = _posix_abspath
380
395
realpath = _posix_realpath
381
396
pathjoin = os.path.join
382
 
normpath = os.path.normpath
 
397
normpath = _posix_normpath
383
398
getcwd = os.getcwdu
384
399
rename = os.rename
385
400
dirname = os.path.dirname