mirror of
https://github.com/davidhalter/jedi.git
synced 2026-01-30 17:45:22 +08:00
Merge branch 'master' of https://github.com/johannesmik/jedi
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user