~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/recordcounter.py

  • Committer: Parth Malwankar
  • Date: 2010-05-19 02:50:49 UTC
  • mto: This revision was merged to the branch mainline in revision 5241.
  • Revision ID: parth.malwankar@gmail.com-20100519025049-cm6pz3oqdchomj6t
close review comments from jam.
News entry clarifies this change is 2a only.
Fixed copyright and style in recordcounter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2010 Canonical Ltd
 
1
# Copyright (C) 2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
"""Record counting support for showing progress of revision fetch."""
17
17
 
 
18
 
18
19
class RecordCounter(object):
19
20
    """Container for maintains estimates of work requires for fetch.
20
21