/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/transport/log.py

  • Committer: Vincent Ladeuil
  • Date: 2010-02-04 10:01:41 UTC
  • mto: (5004.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5006.
  • Revision ID: v.ladeuil+lp@free.fr-20100204100141-aviyyic1im5neuu7
Add comments and update HACKING.txt about which units should be used.

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
        if False:
137
137
            elapsed = time.time() - before
138
138
            if result_len and elapsed > 0:
139
 
                # this is the rate of higher-level data, not the raw network speed
140
 
                mutter("      %9.03fs %8dkB/s" % (elapsed, result_len/elapsed/1000))
 
139
                # this is the rate of higher-level data, not the raw network
 
140
                # speed using base-10 units (see HACKING.txt).
 
141
                mutter("      %9.03fs %8dkB/s"
 
142
                       % (elapsed, result_len/elapsed/1000))
141
143
            else:
142
144
                mutter("      %9.03fs" % (elapsed))
143
145
        return return_result