resolved parent issue of params -> generators working now! / fixed path problem with tests

This commit is contained in:
David Halter
2012-05-12 23:29:07 +02:00
parent 1fb11dd178
commit 22d83e8518
8 changed files with 55 additions and 33 deletions

View File

@@ -1,5 +1,5 @@
def next(iterator, default=None):
def next(iterator, default=1):
if hasattr("next"):
return iterator.next()
else: