Changeset: 7b538f7b4426 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=7b538f7b4426
Modified Files:
        sql/test/bincopy/Tests/bincopy_test_the_testdata.py
Branch: copybinary
Log Message:

Adapt to Python3.6


diffs (12 lines):

diff --git a/sql/test/bincopy/Tests/bincopy_test_the_testdata.py 
b/sql/test/bincopy/Tests/bincopy_test_the_testdata.py
--- a/sql/test/bincopy/Tests/bincopy_test_the_testdata.py
+++ b/sql/test/bincopy/Tests/bincopy_test_the_testdata.py
@@ -7,7 +7,7 @@ import sys
 
 def check_testdata(args, expected):
     cmd = [ 'bincopydata', *(str(a) for a in args)]
-    output = subprocess.check_output(cmd, text=False)
+    output = subprocess.check_output(cmd, input=b"")
 
     if expected == output:
         return
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to