builtin_methods calculation of iterable works now with the mro.

This commit is contained in:
Dave Halter
2016-01-07 15:41:20 +01:00
parent 8216ff3b11
commit 06cb82830a
3 changed files with 15 additions and 6 deletions

View File

@@ -132,7 +132,7 @@ list({a - 1: 3 for a in [1]})[0]
d = {a - 1: b for a, b in {1: 'a', 3: 1.0}.items()}
#? int()
list(d)[0]
#? str()
#? str() float()
d.values()[0]
#? str()
d[0]