mirror of
https://github.com/vim/vim.git
synced 2026-02-01 11:34:23 +01:00
Also add syntax tests for those newly constants. closes: #17788 closes: #18922 Signed-off-by: Rob B <github@0x7e.net> Signed-off-by: Christian Brabandt <cb@256bit.org>
12 lines
269 B
Python
12 lines
269 B
Python
# Built-in Constants
|
|
# https://docs.python.org/3/library/constants.html
|
|
|
|
# VIM_TEST_SETUP unlet g:python_constant_highlight
|
|
# VIM_TEST_SETUP unlet g:python_no_builtin_highlight
|
|
test = False
|
|
test = True
|
|
test = None
|
|
test = NotImplemented
|
|
test = Ellipsis
|
|
test = __debug__
|