/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 bzrlib/inventory.py

  • Committer: Jelmer Vernooij
  • Date: 2017-02-05 16:49:28 UTC
  • mto: (6621.2.1 py3)
  • mto: This revision was merged to the branch mainline in revision 6624.
  • Revision ID: jelmer@jelmer.uk-20170205164928-nmcybzip5kdhiwon
Use 2to3 set_literal fixer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1487
1487
            keys = [StaticTuple(f,).intern() for f in directories_to_expand]
1488
1488
            directories_to_expand = set()
1489
1489
            items = self.parent_id_basename_to_file_id.iteritems(keys)
1490
 
            next_file_ids = set([item[1] for item in items])
 
1490
            next_file_ids = {item[1] for item in items}
1491
1491
            next_file_ids = next_file_ids.difference(interesting)
1492
1492
            interesting.update(next_file_ids)
1493
1493
            for entry in self._getitems(next_file_ids):