@@ -1,4 +1,4 @@
-from __future__ import absolute_import
+from __future__ import absolute_import, print_function
import binascii
import getopt
@@ -96,11 +96,11 @@
if nerrs[0] == 0:
print >> sys.stderr, 'seed:', hex(seed)[:-1]
if gerrs[0] == 0:
- print >> sys.stderr, 'graph:', graph
- print >> sys.stderr, '* bases:', bases
- print >> sys.stderr, '* seq: ', seq
- print >> sys.stderr, '* output: ', output
- print >> sys.stderr, '* expected:', expected
+ print ('graph:', graph, file=sys.stderr)
+ print ('* bases:', bases, file=sys.stderr)
+ print ('* seq: ', seq, file=sys.stderr)
+ print ('* output: ', output, file=sys.stderr)
+ print ('* expected:', expected, file=sys.stderr)
nerrs[0] += 1
gerrs[0] += 1
@@ -184,8 +184,8 @@
inclusive=inclusive)
def printlazyancestors(s, l):
- print 'membership: %r' % [n for n in l if n in s]
- print 'iteration: %r' % list(s)
+ print ('membership: %r' % [n for n in l if n in s])
+ print ('iteration: %r' % list(s))
def test_lazyancestors():
# Empty revs
@@ -235,9 +235,9 @@
cgcas = sorted(cl.index.ancestors(a, b))
pygcas = sorted(ancestor.ancestors(cl.parentrevs, a, b))
if cgcas != pygcas:
- print "test_gca: for dag %s, gcas for %d, %d:" % (dag,
a, b)
- print " C returned: %s" % cgcas
- print " Python returned: %s" % pygcas
+ print ("test_gca: for dag %s, gcas for %d, %d:" %
(dag, a, b))
+ print (" C returned: %s" % cgcas)
+ print (" Python returned: %s" % pygcas)
def main():
seed = None
@@ -59,7 +59,6 @@
tests/sitecustomize.py not using absolute_import
tests/svn-safe-append.py not using absolute_import
tests/svnxml.py not using absolute_import
- tests/test-ancestor.py requires print_function
tests/test-atomictempfile.py not using absolute_import
tests/test-batching.py not using absolute_import
tests/test-batching.py requires print_function