found list indexing issue with sith and fixed it.

This commit is contained in:
Dave Halter
2014-04-16 01:31:49 +02:00
parent 62bd8bd8ef
commit a341791fda
2 changed files with 16 additions and 8 deletions

View File

@@ -13,6 +13,13 @@ sorted(arr)[0]
#? str()
next(reversed(arr))
# should not fail if there's no return value.
def yielder():
yield None
#?
next(reversed(yielder()))
#? str()
next(open(''))