Skip to content

Commit a9b046a

Browse files
committed
Update to Python 3 builtins
1 parent 580e95b commit a9b046a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

syntax/python.vim

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -294,13 +294,13 @@ endif
294294

295295
" Builtin functions
296296
if g:python3syntax_builtin_funcs
297-
syn keyword pythonBuiltinFunc __import__ abs all any apply
298-
syn keyword pythonBuiltinFunc bin callable classmethod cmp coerce compile
299-
syn keyword pythonBuiltinFunc delattr dir divmod enumerate eval execfile filter
297+
syn keyword pythonBuiltinFunc __import__ abs all any ascii
298+
syn keyword pythonBuiltinFunc bin bytearray bytes callable classmethod compile
299+
syn keyword pythonBuiltinFunc delattr dir divmod enumerate eval exec filter
300300
syn keyword pythonBuiltinFunc format getattr globals locals hasattr hash help hex id
301-
syn keyword pythonBuiltinFunc input intern isinstance issubclass iter len map max min
302-
syn keyword pythonBuiltinFunc next oct open ord pow property range xrange
303-
syn keyword pythonBuiltinFunc raw_input reduce reload repr reversed round setattr
301+
syn keyword pythonBuiltinFunc input isinstance issubclass iter len map max memoryview min
302+
syn keyword pythonBuiltinFunc next oct open ord pow property range
303+
syn keyword pythonBuiltinFunc repr reversed round setattr
304304
syn keyword pythonBuiltinFunc slice sorted staticmethod sum vars zip
305305

306306
if g:python3syntax_print_as_function

0 commit comments

Comments
 (0)