fix string/array (sequence) multiplications with integer.

This commit is contained in:
Dave Halter
2014-06-26 00:49:56 +02:00
parent 47205dd7f3
commit bdcbac160b
3 changed files with 10 additions and 8 deletions

View File

@@ -56,14 +56,6 @@ a = ['']*2
#? list()
a
a = 2*2
#? int()
a
a = "a"*3
#? str()
a
# -----------------
# tuple assignments
# -----------------