~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/lsprof.py

  • Committer: Vincent Ladeuil
  • Date: 2011-07-06 09:22:00 UTC
  • mfrom: (6008 +trunk)
  • mto: (6012.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6013.
  • Revision ID: v.ladeuil+lp@free.fr-20110706092200-7iai2mwzc0sqdsvf
MergingĀ inĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
275
275
        code = subentry.code
276
276
        totaltime = int(subentry.totaltime * 1000)
277
277
        #out_file.write('cob=%s\n' % (code.co_filename,))
278
 
        out_file.write('cfn=%s\n' % (label(code, True),))
279
278
        if isinstance(code, str):
280
279
            out_file.write('cfi=~\n')
 
280
            out_file.write('cfn=%s\n' % (label(code, True),))
281
281
            out_file.write('calls=%d 0\n' % (subentry.callcount,))
282
282
        else:
283
283
            out_file.write('cfi=%s\n' % (code.co_filename,))
 
284
            out_file.write('cfn=%s\n' % (label(code, True),))
284
285
            out_file.write('calls=%d %d\n' % (
285
286
                subentry.callcount, code.co_firstlineno))
286
287
        out_file.write('%d %d\n' % (lineno, totaltime))