Skip to content

Commit 921d522

Browse files
committed
Python 3.6
1 parent a1a2788 commit 921d522

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
vi_cv_path_plain_lua=/usr/local/bin/lua
1818
vi_cv_dll_name_perl=/System/Library/Perl/5.16/darwin-thread-multi-2level/CORE/libperl.dylib
1919
vi_cv_dll_name_python=/System/Library/Frameworks/Python.framework/Versions/2.7/Python
20-
vi_cv_dll_name_python3=/usr/local/Frameworks/Python.framework/Versions/3.5/Python
20+
vi_cv_dll_name_python3=/usr/local/Frameworks/Python.framework/Versions/3.6/Python
2121
VIMCMD=src/MacVim/build/Release/MacVim.app/Contents/MacOS/Vim
2222
"CONFOPT='--with-features=huge --enable-multibyte --enable-netbeans --with-tlib=ncurses --enable-cscope --enable-perlinterp=dynamic --enable-pythoninterp=dynamic --enable-python3interp=dynamic --enable-rubyinterp=dynamic --enable-luainterp=dynamic --with-lua-prefix=/usr/local --enable-gui=macvim'"
2323

src/testdir/test87.ok

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -658,10 +658,10 @@ assert sys.stderr.closed()==False:NOT FAILED
658658
assert sys.stdout.errors=="strict":NOT FAILED
659659
assert sys.stderr.errors=="strict":NOT FAILED
660660
assert sys.stdout.encoding==sys.stderr.encoding:NOT FAILED
661-
sys.stdout.write(None):(<class 'TypeError'>, TypeError("Can't convert 'NoneType' object to str implicitly",))
661+
sys.stdout.write(None):(<class 'TypeError'>, TypeError('argument must be str, bytes or bytearray, not None',))
662662
>> OutputWriteLines
663663
sys.stdout.writelines(None):(<class 'TypeError'>, TypeError("'NoneType' object is not iterable",))
664-
sys.stdout.writelines([1]):(<class 'TypeError'>, TypeError("Can't convert 'int' object to str implicitly",))
664+
sys.stdout.writelines([1]):(<class 'TypeError'>, TypeError('argument must be str, bytes or bytearray, not int',))
665665
>>> Testing *Iter* using sys.stdout.writelines(%s)
666666
sys.stdout.writelines(FailingIter()):(<class 'NotImplementedError'>, NotImplementedError('iter',))
667667
sys.stdout.writelines(FailingIterNext()):(<class 'NotImplementedError'>, NotImplementedError('next',))
@@ -700,8 +700,8 @@ vim.foreach_rtp(NoArgsCall()):(<class 'TypeError'>, TypeError('__call__() takes
700700
vim.foreach_rtp(FailingCall()):(<class 'NotImplementedError'>, NotImplementedError('call',))
701701
vim.foreach_rtp(int, 2):(<class 'TypeError'>, TypeError('foreach_rtp() takes exactly one argument (2 given)',))
702702
> import
703-
import xxx_no_such_module_xxx:(<class 'ImportError'>, ImportError('No module named xxx_no_such_module_xxx',))
704-
import failing_import:(<class 'ImportError'>, ImportError('No module named failing_import',))
703+
import xxx_no_such_module_xxx:(<class 'ModuleNotFoundError'>, ModuleNotFoundError("No module named 'xxx_no_such_module_xxx'",))
704+
import failing_import:(<class 'ModuleNotFoundError'>, ModuleNotFoundError("No module named 'failing_import'",))
705705
import failing:(<class 'NotImplementedError'>, NotImplementedError())
706706
> Options
707707
>> OptionsItem

0 commit comments

Comments
 (0)