summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-09-15 11:44:27 +0200
committerBram Moolenaar <Bram@vim.org>2016-09-15 11:44:27 +0200
commit3c4ebeba17399e4ef33d004c269e667f696f0eb6 (patch)
treeb75620aac93db2709668d7457d9297fd085cf312
parent5582ef14384525e8cec86016876d97a6b32dd548 (diff)
patch 8.0.0005v8.0.0005
Problem: Netbeans test fails with Python 3. (Jonathonf) Solution: Encode the string before sending it. (closes #1070)
-rw-r--r--src/testdir/test_netbeans.py2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_netbeans.py b/src/testdir/test_netbeans.py
index 3471dd9526..e0d291d60d 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 5634114385..77d35a2dc3 100644
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 5,
+/**/
4,
/**/
3,