Changeset 9dad293 in rtems-central for rtemsqual/glossary.py
- Timestamp:
- Apr 28, 2020, 9:29:48 AM (10 months ago)
- Branches:
- master
- Children:
- b3f5b7e
- Parents:
- 99da835
- git-author:
- Sebastian Huber <sebastian.huber@…> (04/28/20 09:29:48)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (05/28/20 08:34:46)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rtemsqual/glossary.py
r99da835 r9dad293 36 36 37 37 def _gather_glossary_groups(item: Item, glossary_groups: ItemMap) -> None: 38 for child in item.children :38 for child in item.children(): 39 39 _gather_glossary_groups(child, glossary_groups) 40 40 if item["type"] == "glossary" and item["glossary-type"] == "group": … … 43 43 44 44 def _gather_glossary_terms(item: Item, glossary_terms: ItemMap) -> None: 45 for child in item.children :45 for child in item.children(): 46 46 _gather_glossary_terms(child, glossary_terms) 47 47 if item["type"] == "glossary" and item["glossary-type"] == "term":
Note: See TracChangeset
for help on using the changeset viewer.