/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: Alexander Belchenko
  • Date: 2010-06-17 08:53:15 UTC
  • mfrom: (5300 +trunk)
  • mto: (5303.2.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5305.
  • Revision ID: bialix@ukr.net-20100617085315-hr8186zck57zn35s
merge bzr.dev; fix NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1321
1321
def normalizes_filenames():
1322
1322
    """Return True if this platform normalizes unicode filenames.
1323
1323
 
1324
 
    Mac OSX does, Windows/Linux do not.
 
1324
    Only Mac OSX.
1325
1325
    """
1326
1326
    return _platform_normalizes_filenames
1327
1327
 
1332
1332
    On platforms where the system normalizes filenames (Mac OSX),
1333
1333
    you can access a file by any path which will normalize correctly.
1334
1334
    On platforms where the system does not normalize filenames
1335
 
    (Windows, Linux), you have to access a file by its exact path.
 
1335
    (everything else), you have to access a file by its exact path.
1336
1336
 
1337
1337
    Internally, bzr only supports NFC normalization, since that is
1338
1338
    the standard for XML documents.