mirror of
https://github.com/openSUSE/osc.git
synced 2024-12-27 02:16:12 +01:00
Fix Python 3.7 support
See PEP 479
This commit is contained in:
parent
e5478e2ff6
commit
f5938348db
@ -87,7 +87,6 @@ class ConfigLineOrder:
|
|||||||
for line in self._lines:
|
for line in self._lines:
|
||||||
if line.type == 'section':
|
if line.type == 'section':
|
||||||
yield line.name
|
yield line.name
|
||||||
raise StopIteration()
|
|
||||||
|
|
||||||
class Line:
|
class Line:
|
||||||
"""Base class for all line objects"""
|
"""Base class for all line objects"""
|
||||||
@ -160,7 +159,6 @@ class SectionLine(Line):
|
|||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
for line in self._lines:
|
for line in self._lines:
|
||||||
yield line.name
|
yield line.name
|
||||||
raise StopIteration()
|
|
||||||
|
|
||||||
|
|
||||||
class CommentLine(Line):
|
class CommentLine(Line):
|
||||||
|
Loading…
Reference in New Issue
Block a user