1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-28 10:46:15 +01:00

Merge branch 'OscConfigParser_python3' of https://github.com/lethliel/osc

Remove explicit StopIteration exception (preparation for python3).
This commit is contained in:
Marcus Huewe 2018-11-06 15:04:10 +01:00
commit ffda882979

View File

@ -87,7 +87,6 @@ class ConfigLineOrder:
for line in self._lines:
if line.type == 'section':
yield line.name
raise StopIteration()
class Line:
"""Base class for all line objects"""
@ -160,7 +159,6 @@ class SectionLine(Line):
def __iter__(self):
for line in self._lines:
yield line.name
raise StopIteration()
class CommentLine(Line):