~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Robert Collins
  • Date: 2005-08-23 06:52:09 UTC
  • mto: (974.1.50) (1185.1.10) (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: robertc@robertcollins.net-20050823065209-81cd5962c401751b
move io redirection into each test case from the global runner

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
 
19
 
from sets import Set
20
19
import time
21
20
 
22
21
from osutils import format_date
82
81
    history = b.revision_history()
83
82
    revno = len(history)
84
83
    print '  %8d revision%s' % (revno, plural(revno))
85
 
    committers = Set()
 
84
    committers = {}
86
85
    for rev in history:
87
 
        committers.add(b.get_revision(rev).committer)
 
86
        committers[b.get_revision(rev).committer] = True
88
87
    print '  %8d committer%s' % (len(committers), plural(len(committers)))
89
88
    if revno > 0:
90
89
        firstrev = b.get_revision(history[0])