From: Bram Moolenaar Date: Thu, 15 Sep 2016 09:44:27 +0000 (+0200) Subject: patch 8.0.0005 X-Git-Tag: v8.0.0005 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c4ebeba17399e4ef33d004c269e667f696f0eb6;p=vim patch 8.0.0005 Problem: Netbeans test fails with Python 3. (Jonathonf) Solution: Encode the string before sending it. (closes #1070) --- diff --git a/src/testdir/test_netbeans.py b/src/testdir/test_netbeans.py index 3471dd952..e0d291d60 100644 --- a/src/testdir/test_netbeans.py +++ b/src/testdir/test_netbeans.py @@ -52,7 +52,7 @@ class ThreadedTCPRequestHandler(socketserver.BaseRequestHandler): return if len(response) > 0: - self.request.sendall(response) + self.request.sendall(response.encode('utf-8')) # Write the respoinse into the file, so that the test can knows # the command was sent. with open("Xnetbeans", "a") as myfile: diff --git a/src/version.c b/src/version.c index 563411438..77d35a2dc 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 5, /**/ 4, /**/