~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: Vincent Ladeuil
  • Date: 2010-06-17 09:23:19 UTC
  • mfrom: (5301 +trunk)
  • mto: (5247.1.8 first-try)
  • mto: This revision was merged to the branch mainline in revision 5326.
  • Revision ID: v.ladeuil+lp@free.fr-20100617092319-da2bzdtf3j0voynf
Merge bzr.dev into cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
1308
1308
def normalizes_filenames():
1309
1309
    """Return True if this platform normalizes unicode filenames.
1310
1310
 
1311
 
    Mac OSX does, Windows/Linux do not.
 
1311
    Only Mac OSX.
1312
1312
    """
1313
1313
    return _platform_normalizes_filenames
1314
1314
 
1319
1319
    On platforms where the system normalizes filenames (Mac OSX),
1320
1320
    you can access a file by any path which will normalize correctly.
1321
1321
    On platforms where the system does not normalize filenames
1322
 
    (Windows, Linux), you have to access a file by its exact path.
 
1322
    (everything else), you have to access a file by its exact path.
1323
1323
 
1324
1324
    Internally, bzr only supports NFC normalization, since that is
1325
1325
    the standard for XML documents.