~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

Add bzrlib.tests.per_repository_vf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3062
3062
    experimental = False
3063
3063
    # Does this repository format escape funky characters, or does it create files with
3064
3064
    # similar names as the versioned files in its contents on disk ?
3065
 
    supports_funky_characters = True
 
3065
    supports_funky_characters = None
3066
3066
    # Does this repository format support leaving locks?
3067
 
    supports_leaving_lock = True
 
3067
    supports_leaving_lock = None
 
3068
    # Does this format support the full VersionedFiles interface?
 
3069
    supports_full_versioned_files = None
3068
3070
 
3069
3071
    def __repr__(self):
3070
3072
        return "%s()" % self.__class__.__name__