1
0
forked from VimPlug/jedi

Fix power operation, fixes #1268

This commit is contained in:
Dave Halter
2018-12-25 00:51:22 +01:00
parent d3f205f634
commit 1c80705276
2 changed files with 6 additions and 1 deletions

View File

@@ -57,6 +57,11 @@ a
#? int() str()
(3 ** 'a')
class X():
foo = 2
#? int()
(X.foo ** 3)
# -----------------
# assignments
# -----------------