/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: Canonical.com Patch Queue Manager
  • Date: 2010-06-17 10:33:38 UTC
  • mfrom: (5299.1.2 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100617103338-k4kkjx9fkt5qv33e
(vila) Fix typo in treebuilder docstring

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