mirror of
https://github.com/vim/vim.git
synced 2026-04-09 21:52:48 +02:00
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__
|