1
0
forked from VimPlug/jedi

some operator support for '*'

This commit is contained in:
David Halter
2012-10-04 01:31:57 +02:00
parent 7e39a7d1ba
commit 8795b4fbac
3 changed files with 21 additions and 1 deletions

View File

@@ -31,6 +31,21 @@ b[8-7]
b[8:]
# -----------------
# iterable multiplication
# -----------------
a = ['']*2
#? list()
a
a = 2*2
#? int()
a
a = "a"*3
#? str()
a
# -----------------
# tuple assignments
# -----------------