[PATCH] D57744: Python3 support: print-statement

Michael Platings via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 5 04:15:36 PST 2019


michaelplatings added inline comments.


================
Comment at: LNTBased/lib/spec.py:113
                 remote_command = 'cd %s\n%s\n' % (cwd, cmdstr)
-                print >>self.log, "command:", remote_command,
+                print("command:", remote_command, file=self.log, end='')
                 f.write(remote_command)
----------------
Should be `end=' '`


Repository:
  rT test-suite

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57744/new/

https://reviews.llvm.org/D57744





More information about the llvm-commits mailing list