fixed set-completion related bug

This commit is contained in:
David Halter
2012-08-23 02:17:48 +02:00
parent cfba8216c9
commit 09e9a85382
2 changed files with 3 additions and 3 deletions

View File

@@ -196,13 +196,13 @@ arr2.append('')
arr2[0]
st = {}
st = {1.0}
st.add(1)
lst = list(st)
lst.append('')
#? int() str()
#? float() int() str()
lst[0]
lst = [1]