From a04eaa0346e8aa5ad86a195f8f4d36487ebfe09c Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 13 May 2017 19:20:21 +0300 Subject: [PATCH] Feat(Python3): Fix old style repr --- subproc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subproc.py b/subproc.py index 7344a51..c7fd116 100644 --- a/subproc.py +++ b/subproc.py @@ -537,7 +537,7 @@ def record_trial(s): c.write(s) c.seek(0) r = c.read() - show = " start:\t %s\n end:\t %s\n" % (`s`, `r`) + show = " start:\t %s\n end:\t %s\n" % (repr(s), repr(r)) if r != s: raise IOError("String distorted:\n%s" % show) @@ -654,12 +654,12 @@ def test(p=0): print("\t...yep, it failed.") print('\tWrite, then read, two newline-teriminated lines, using readline:') p.write('first full line written\n'); p.write('second.\n') - print(`p.readline()`) - print(`p.readline()`) + print(repr(p.readline())) + print(repr(p.readline())) print('\tThree lines, last sans newline, read using combination:') p.write('first\n'); p.write('second\n'); p.write('third, (no cr)') print('\tFirst line via readline:') - print(`p.readline()`) + print(repr(p.readline())) print('\tRest via readPendingChars:') print(p.readPendingChars()) print("\tStopping then continuing subprocess (verbose):") -- 2.39.2