/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 ids.py

More performance hacking, introduce sqlite cache, escape characters in commits that break serializers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Converters, etc for going between Bazaar and Git ids."""
18
18
 
19
 
_namespace_prefix = 'git-experimental'
20
 
_revision_id_prefix = _namespace_prefix + 'r-'
21
 
_file_id_prefix = _namespace_prefix + 'f-'
 
19
NAMESPACE = 'git-experimental'
 
20
_revision_id_prefix = NAMESPACE + '-r:'
22
21
 
23
22
 
24
23
def convert_revision_id_git_to_bzr(git_rev_id):