/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/plugins/git/tree.py

Merge python3-h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
319
319
 
320
320
    def all_versioned_paths(self):
321
321
        ret = set()
322
 
        todo = set([(store, '', self.tree)])
 
322
        todo = {(self.store, '', self.tree)}
323
323
        while todo:
324
324
            (store, path, tree_id) = todo.pop()
325
325
            if tree_id is None: