~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/missing.py

  • Committer: Robert Collins
  • Date: 2005-09-29 02:01:49 UTC
  • Revision ID: robertc@robertcollins.net-20050929020149-1ff16722c6a01b2c
reenable remotebranch tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
A plugin for displaying what revisions are in 'other' but not in local.
3
3
"""
4
4
 
 
5
import bzrlib
 
6
 
 
7
try:
 
8
    set
 
9
except NameError:
 
10
    from sets import Set as set
 
11
 
 
12
 
5
13
def show_missing(br_local, br_remote, verbose=False, quiet=False):
6
14
    """Show the revisions which exist in br_remote, that 
7
15
    do not exist in br_local.