Lines Matching refs:import
1171 … \ 'import sys; [sys.stdout.write(".") and sys.stdout.flush() for _ in range(10000)]'], options)
1570 let job = [s:python, '-c', 'import time;time.sleep(0.5)']->job_start({'exit_cb': 'MyExitTimeCb'})
1583 …let g:job = job_start([s:python, '-c', 'import time;time.sleep(0.5)'], {'exit_cb': 'MyExitTimeCb'})
1716 let g:job = job_start([s:python, '-c', 'import time;time.sleep(10)'])
1834 let arg = 'import sys;sys.stdout.write("1\n2\n3")'
1848 let arg = 'import sys;sys.stdout.write("1\n2\n3")'
1858 let arg = 'import os,sys;os.close(1);sys.stderr.write("test\n")'
1959 call s:test_list_args('import sys;sys.stdout.write("hello world")', "hello world", 0)
1960 call s:test_list_args('import sys;sys.stdout.write("hello\nworld")', "hello\nworld", 0)
1961 call s:test_list_args('import sys;sys.stdout.write(''hello\nworld'')', "hello\nworld", 0)
1962 call s:test_list_args('import sys;sys.stdout.write(''hello"world'')', "hello\"world", 0)
1963 call s:test_list_args('import sys;sys.stdout.write(''hello^world'')', "hello^world", 0)
1964 call s:test_list_args('import sys;sys.stdout.write("hello&&world")', "hello&&world", 0)
1965 call s:test_list_args('import sys;sys.stdout.write(''hello\\world'')', "hello\\world", 0)
1966 call s:test_list_args('import sys;sys.stdout.write(''hello\\\\world'')', "hello\\\\world", 0)
1967 call s:test_list_args('import sys;sys.stdout.write("hello\"world\"")', 'hello"world"', 0)
1968 call s:test_list_args('import sys;sys.stdout.write("h\"ello worl\"d")', 'h"ello worl"d', 0)
1969 …call s:test_list_args('import sys;sys.stdout.write("h\"e\\\"llo wor\\\"l\"d")', 'h"e\"llo wor\"l"d…
1970 call s:test_list_args('import sys;sys.stdout.write("h\"e\\\"llo world")', 'h"e\"llo world', 0)
1971 call s:test_list_args('import sys;sys.stdout.write("hello\tworld")', "hello\tworld", 0)
1988 let job = job_start(s:python . ' -c "import time;time.sleep(0.2)"',