# HG changeset patch # User Gregory Szorc # Date 1539361570 -7200 # Node ID 1ae0faa1479756480dfd08d7a7cb72b61494f6c8 # Parent b25fbe7e494ef30f2674bcd10395677550c265a0 py3: use write() instead of print() Because print() expects str and we want to write bytes. There should be no functional changes as part of this. Differential Revision: https://phab.mercurial-scm.org/D5011 diff -r b25fbe7e494e -r 1ae0faa14797 mercurial/lsprofcalltree.py --- a/mercurial/lsprofcalltree.py Fri Oct 12 17:35:54 2018 +0200 +++ b/mercurial/lsprofcalltree.py Fri Oct 12 18:26:10 2018 +0200 @@ -10,7 +10,7 @@ of the GNU General Public License, incorporated herein by reference. """ -from __future__ import absolute_import, print_function +from __future__ import absolute_import def label(code): if isinstance(code, str): @@ -27,7 +27,7 @@ def output(self, out_file): self.out_file = out_file - print('events: Ticks', file=out_file) + out_file.write(b'events: Ticks\n') self._print_summary() for entry in self.data: self._entry(entry) @@ -37,23 +37,24 @@ for entry in self.data: totaltime = int(entry.totaltime * 1000) max_cost = max(max_cost, totaltime) - print('summary: %d' % max_cost, file=self.out_file) + self.out_file.write(b'summary: %d\n' % max_cost) def _entry(self, entry): out_file = self.out_file code = entry.code if isinstance(code, str): - print('fi=~', file=out_file) + out_file.write(b'fi=~\n') else: - print('fi=%s' % code.co_filename, file=out_file) - print('fn=%s' % label(code), file=out_file) + out_file.write(b'fi=%s\n' % code.co_filename) + + out_file.write(b'fn=%s\n' % label(code)) inlinetime = int(entry.inlinetime * 1000) if isinstance(code, str): - print('0 ', inlinetime, file=out_file) + out_file.write(b'0 %d\n' % inlinetime) else: - print('%d %d' % (code.co_firstlineno, inlinetime), file=out_file) + out_file.write(b'%d %d\n' % (code.co_firstlineno, inlinetime)) # recursive calls are counted in entry.calls if entry.calls: @@ -68,19 +69,20 @@ for subentry in calls: self._subentry(lineno, subentry) - print(file=out_file) + + out_file.write(b'\n') def _subentry(self, lineno, subentry): out_file = self.out_file code = subentry.code - print('cfn=%s' % label(code), file=out_file) + out_file.write(b'cfn=%s\n' % label(code)) if isinstance(code, str): - print('cfi=~', file=out_file) - print('calls=%d 0' % subentry.callcount, file=out_file) + out_file.write(b'cfi=~\n') + out_file.write(b'calls=%d 0\n' % subentry.callcount) else: - print('cfi=%s' % code.co_filename, file=out_file) - print('calls=%d %d' % ( - subentry.callcount, code.co_firstlineno), file=out_file) + out_file.write(b'cfi=%s\n' % code.co_filename) + out_file.write(b'calls=%d %d\n' % ( + subentry.callcount, code.co_firstlineno)) totaltime = int(subentry.totaltime * 1000) - print('%d %d' % (lineno, totaltime), file=out_file) + out_file.write(b'%d %d\n' % (lineno, totaltime))