summaryrefslogtreecommitdiff
path: root/rtemsspec/content.py
diff options
context:
space:
mode:
Diffstat (limited to 'rtemsspec/content.py')
-rw-r--r--rtemsspec/content.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/rtemsspec/content.py b/rtemsspec/content.py
index 9651664e..7e596a2e 100644
--- a/rtemsspec/content.py
+++ b/rtemsspec/content.py
@@ -196,6 +196,9 @@ class Content:
self._empty_line_indent = ""
self._pop_indent_gap = pop_indent_gap
+ def __iter__(self):
+ yield from self._lines
+
def __str__(self):
return "\n".join(itertools.chain(self._lines, [""]))