X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/9c9f6eb6d53c4a38c46acfcffa1c90a787a72a77..0c6672890ce7161b3e3484c8831ca23c55f95c5c:/tests/expression.py diff --git a/tests/expression.py b/tests/expression.py index e7054e3..d90b7cf 100644 --- a/tests/expression.py +++ b/tests/expression.py @@ -118,6 +118,15 @@ def gen(): async def f(): await some.complicated[0].call(with_args=(True or (1 is not 1))) +if ( + threading.current_thread() != threading.main_thread() and + threading.current_thread() != threading.main_thread() or + signal.getsignal(signal.SIGINT) != signal.default_int_handler +): + return True +last_call() +# standalone comment at ENDMARKER + # output @@ -261,3 +270,14 @@ def gen(): async def f(): await some.complicated[0].call(with_args=(True or (1 is not 1))) + + +if ( + threading.current_thread() != threading.main_thread() + and threading.current_thread() != threading.main_thread() + or signal.getsignal(signal.SIGINT) != signal.default_int_handler +): + return True + +last_call() +# standalone comment at ENDMARKER