1
0
forked from VimPlug/jedi
This commit is contained in:
Johannes Mikulasch
2017-10-31 14:02:35 +01:00
5 changed files with 25 additions and 3 deletions

View File

@@ -23,3 +23,14 @@ async def x2():
async with open('asdf') as f:
#? ['readlines']
f.readlines
class A():
@staticmethod
async def b(c=1, d=2):
return 1
#! 9 ['def b']
await A.b()
#! 11 ['param d=2']
await A.b(d=3)