forked from VimPlug/jedi
fix string/array (sequence) multiplications with integer.
This commit is contained in:
@@ -41,6 +41,14 @@ x = 'upp' + 'e'
|
||||
#? str.upper
|
||||
getattr(str, x + 'r')
|
||||
|
||||
a = "a"*3
|
||||
#? str()
|
||||
a
|
||||
a = 3 * "a"
|
||||
#? str()
|
||||
a
|
||||
|
||||
|
||||
# -----------------
|
||||
# assignments
|
||||
# -----------------
|
||||
|
||||
Reference in New Issue
Block a user