Private
Public Access
2
0

doxy2swig.py: remove/explain 'do-nothing' blocks

Signed-off-by: Alex Tereschenko <alext.mkrs@gmail.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Alex Tereschenko
2017-05-20 13:37:01 +02:00
committed by Brendan Le Foll
parent 69f7d09103
commit 2980e211db

View File

@@ -121,6 +121,7 @@ class Doxy2SWIG:
# ignore pure whitespace
m = self.space_re.match(txt)
if m and len(m.group()) == len(txt):
# do nothing
pass
else:
self.add_text(textwrap.fill(txt, break_long_words=False))
@@ -347,9 +348,7 @@ class Doxy2SWIG:
def do_simplesect(self, node):
kind = node.attributes['kind'].value
if kind in ('date', 'rcs', 'version'):
pass
elif kind == 'warning':
if kind == 'warning':
self.add_text(['\n', 'WARNING: '])
self.generic_parse(node)
elif kind == 'see':