summaryrefslogtreecommitdiffstats
path: root/Lib/popen2.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/popen2.py')
-rw-r--r--Lib/popen2.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/popen2.py b/Lib/popen2.py
index ebb4ef6..acba602 100644
--- a/Lib/popen2.py
+++ b/Lib/popen2.py
@@ -178,7 +178,7 @@ def _test():
w.close()
got = r.read()
if got.strip() != expected:
- raise ValueError("wrote %s read %s" % (`teststr`, `got`))
+ raise ValueError("wrote %r read %r" % (teststr, got))
print "testing popen3..."
try:
r, w, e = popen3([cmd])
@@ -188,10 +188,10 @@ def _test():
w.close()
got = r.read()
if got.strip() != expected:
- raise ValueError("wrote %s read %s" % (`teststr`, `got`))
+ raise ValueError("wrote %r read %r" % (teststr, got))
got = e.read()
if got:
- raise ValueError("unexected %s on stderr" % `got`)
+ raise ValueError("unexected %r on stderr" % (got,))
for inst in _active[:]:
inst.wait()
if _active: