/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 breezy/git/object_store.py

Support user.signingkey configuration variable in .git/config.

Merged from https://code.launchpad.net/~jelmer/brz/local-git-key/+merge/381000

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Map from Git sha's to Bazaar objects."""
19
19
 
 
20
from __future__ import absolute_import
 
21
 
20
22
from dulwich.objects import (
21
23
    Blob,
22
24
    Commit,
44
46
from ..revision import (
45
47
    NULL_REVISION,
46
48
    )
 
49
from ..sixish import viewitems
47
50
from ..tree import InterTree
48
51
from ..bzr.testament import (
49
52
    StrictTestament3,
397
400
 
398
401
    def __iter__(self):
399
402
        return ((self.store[object_id], path) for (object_id, path) in
400
 
                self.objects.items())
 
403
                viewitems(self.objects))
401
404
 
402
405
 
403
406
class BazaarObjectStore(BaseObjectStore):