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

  • Committer: John Arbash Meinel
  • Date: 2008-11-21 20:20:52 UTC
  • mto: This revision was merged to the branch mainline in revision 3847.
  • Revision ID: john@arbash-meinel.com-20081121202052-vs6gqscjphfmxmo8
Minor PEP8 and copyright updates.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
    """
62
62
    return (key in self.get_parent_map([key]))
63
63
 
 
64
 
64
65
def _missing_keys_from_parent_map(self, keys):
65
66
    return set(keys) - set(self.get_parent_map(keys))
66
67