/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/tests/__init__.py

  • Committer: Robert Collins
  • Date: 2010-06-20 22:54:30 UTC
  • mfrom: (5308 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5309.
  • Revision ID: robertc@robertcollins.net-20100620225430-gzgig1g6ltba5sbk
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4345
4345
UnicodeFilename = _UnicodeFilename()
4346
4346
 
4347
4347
 
 
4348
class _ByteStringNamedFilesystem(Feature):
 
4349
    """Is the filesystem based on bytes?"""
 
4350
 
 
4351
    def _probe(self):
 
4352
        if os.name == "posix":
 
4353
            return True
 
4354
        return False
 
4355
 
 
4356
ByteStringNamedFilesystem = _ByteStringNamedFilesystem()
 
4357
 
 
4358
 
4348
4359
class _UTF8Filesystem(Feature):
4349
4360
    """Is the filesystem UTF-8?"""
4350
4361