1
0
forked from VimPlug/jedi

With the changes in parso, f-strings are now completable

This commit is contained in:
Dave Halter
2018-03-31 17:07:47 +02:00
parent 538996d8d3
commit 27655db8a9

View File

@@ -0,0 +1,17 @@
# python >= 3.6
class Foo:
bar = 1
#? 10 int()
f'{Foo.bar}'
#? 10 ['bar']
f'{Foo.bar}'
#? 10 int()
Fr'{Foo.bar'
#? 10 ['bar']
Fr'{Foo.bar'
#? int()
Fr'{Foo.bar
#? ['bar']
Fr'{Foo.bar