summaryrefslogtreecommitdiffstats
path: root/src/testdir/test86.ok
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-06-23 12:51:32 +0200
committerBram Moolenaar <Bram@vim.org>2013-06-23 12:51:32 +0200
commit6c85e7f3be87fa4a669e8f080d527a3982e8e96c (patch)
treeb2b247ced220135504ef4781d1a134632eaa9bda /src/testdir/test86.ok
parent3dbcd0c7ad93533f46981ebafe6710c1e03b1be2 (diff)
updated for version 7.3.1226v7.3.1226
Problem: Python: duplicate code. Solution: Share code between OutputWrite() and OutputWritelines(). (ZyX)
Diffstat (limited to 'src/testdir/test86.ok')
-rw-r--r--src/testdir/test86.ok2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test86.ok b/src/testdir/test86.ok
index a4f1ac4051..05d194338b 100644
--- a/src/testdir/test86.ok
+++ b/src/testdir/test86.ok
@@ -444,7 +444,7 @@ sys.stdout.attr = None:AttributeError:('invalid attribute',)
sys.stdout.write(None):TypeError:('coercing to Unicode: need string or buffer, NoneType found',)
>> OutputWriteLines
sys.stdout.writelines(None):TypeError:("'NoneType' object is not iterable",)
-sys.stdout.writelines([1]):TypeError:('writelines() requires list of strings',)
+sys.stdout.writelines([1]):TypeError:('coercing to Unicode: need string or buffer, int found',)
> VimCommand
vim.command(1):TypeError:('must be string, not int',)
> VimToPython