[kdev-python] [Bug 369363] Type not inferred when iterating objects with __next__

2018-11-03 Thread Francis Herne
https://bugs.kde.org/show_bug.cgi?id=369363 Francis Herne changed: What|Removed |Added Version Fixed In||5.1.0 CC|

[kdev-python] [Bug 369363] Type not inferred when iterating objects with __next__

2016-11-29 Thread Francis Herne
https://bugs.kde.org/show_bug.cgi?id=369363 Francis Herne changed: What|Removed |Added Status|CONFIRMED |RESOLVED Latest Commit|

[kdev-python] [Bug 369363] Type not inferred when iterating objects with __next__

2016-10-03 Thread Sven Brauch via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369363 Sven Brauch changed: What|Removed |Added Status|UNCONFIRMED |CONFIRMED Ever

[kdev-python] [Bug 369363] Type not inferred when iterating objects with __next__

2016-09-25 Thread Nicolás Alvarez via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369363 --- Comment #1 from Nicolás Alvarez --- 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