Loading debian/patches/2to3.patch +10 −1 Original line number Diff line number Diff line Loading @@ -116,7 +116,16 @@ Last-Update: Mon, 16 Dec 2019 08:27:49 +0100 sys.exit(0) if compareOut: @@ -110,15 +110,15 @@ def runTest(inArgPath, @@ -103,22 +103,22 @@ def runTest(inArgPath, if copyOutput and pRep == 0: shutil.copy2(tf, expectedOut) elif compareOut: - e = file(expectedOut, "rU") - o = file(tf, "rU") + e = open(expectedOut, "rU") + o = open(tf, "rU") eit = iter(e) oit = iter(o) n = 1 while True: try: Loading Loading
debian/patches/2to3.patch +10 −1 Original line number Diff line number Diff line Loading @@ -116,7 +116,16 @@ Last-Update: Mon, 16 Dec 2019 08:27:49 +0100 sys.exit(0) if compareOut: @@ -110,15 +110,15 @@ def runTest(inArgPath, @@ -103,22 +103,22 @@ def runTest(inArgPath, if copyOutput and pRep == 0: shutil.copy2(tf, expectedOut) elif compareOut: - e = file(expectedOut, "rU") - o = file(tf, "rU") + e = open(expectedOut, "rU") + o = open(tf, "rU") eit = iter(e) oit = iter(o) n = 1 while True: try: Loading