##// END OF EJS Templates
use repr() instead of backticks
Benoit Boissinot -
r7471:94ecd492 default
parent child Browse files
Show More
@@ -9,13 +9,13 b' def test1(a, b):'
9 if d:
9 if d:
10 c = mpatch.patches(a, [d])
10 c = mpatch.patches(a, [d])
11 if c != b:
11 if c != b:
12 print "***", `a`, `b`
12 print "***", repr(a), repr(b)
13 print "bad:"
13 print "bad:"
14 print `c`[:200]
14 print repr(c)[:200]
15 print `d`
15 print repr(d)
16
16
17 def test(a, b):
17 def test(a, b):
18 print "***", `a`, `b`
18 print "***", repr(a), repr(b)
19 test1(a, b)
19 test1(a, b)
20 test1(b, a)
20 test1(b, a)
21
21
General Comments 0
You need to be logged in to leave comments. Login now