~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-03-08 23:52:59 UTC
  • mfrom: (5684.2.6 per-repository-vf)
  • Revision ID: pqm@pqm.ubuntu.com-20110308235259-6yxq3x7vy60tfta3
(jelmer) Move some tests that rely on the full VersionedFiles API to
 bzrlib.tests.per_repository_vf. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3017
3017
    experimental = False
3018
3018
    # Does this repository format escape funky characters, or does it create files with
3019
3019
    # similar names as the versioned files in its contents on disk ?
3020
 
    supports_funky_characters = True
 
3020
    supports_funky_characters = None
3021
3021
    # Does this repository format support leaving locks?
3022
 
    supports_leaving_lock = True
 
3022
    supports_leaving_lock = None
 
3023
    # Does this format support the full VersionedFiles interface?
 
3024
    supports_full_versioned_files = None
3023
3025
 
3024
3026
    def __repr__(self):
3025
3027
        return "%s()" % self.__class__.__name__