diff options
author | pommicket <pommicket@gmail.com> | 2023-01-07 13:01:09 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-07 13:01:09 -0500 |
commit | 7640ecce499fc49cad3d9b9f391cce0b74e435c9 (patch) | |
tree | c0936d64de36d84d61be0e3f7cfa2f6bdaa42749 /test | |
parent | e2aad67eedd07cff24a51faf31b8c6984a23d777 (diff) |
improve request cancellation, fix hover bug
Diffstat (limited to 'test')
-rw-r--r-- | test/lsp/python/test.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/lsp/python/test.py b/test/lsp/python/test.py new file mode 100644 index 0000000..7b23309 --- /dev/null +++ b/test/lsp/python/test.py @@ -0,0 +1,10 @@ +def funciton() -> str: + ''' this function does things ''' + print('here') + print('there') + return 'something something' + +funciton() +funciton() +funciton() +funciton() |