https://bugs.kde.org/show_bug.cgi?id=369363
--- Comment #1 from Nicolás Alvarez <nicolas.alva...@gmail.com> --- By the way, as another example for the unit tests: class Foo: def __iter__(self): return Bar() def __next__(self): return "blah" class Bar: def __next__(self): return {} for x in Foo(): pass Here 'x' should be of type 'dict', not 'str'! -- You are receiving this mail because: You are watching all bug changes.