1
0
forked from VimPlug/jedi

add support for 'with-assignment' hints

This commit is contained in:
Claude
2016-02-15 17:52:21 +01:00
parent 3a1b2e7104
commit 641fb80773
4 changed files with 20 additions and 0 deletions

View File

@@ -77,3 +77,10 @@ for bar, baz in foo(): # type: int, float
bar
#? float()
baz
with foo(): # type: int
...
with foo() as f: # type: str
#? str()
f