comparison cagou/core/simple_xhtml.py @ 284:ca4daced4638

misc: replaced "dummy" by "__"
author Goffi <goffi@goffi.org>
date Mon, 25 Mar 2019 07:11:09 +0100
parents 1b835bcfa663
children 44752e8031f8
comparison
equal deleted inserted replaced
283:c73a7cd36b54 284:ca4daced4638
402 """removed CSS styles 402 """removed CSS styles
403 403
404 styles in self._css_styles will be removed 404 styles in self._css_styles will be removed
405 and the attribute will be deleted 405 and the attribute will be deleted
406 """ 406 """
407 for tag, dummy in reversed(self._css_styles): 407 for tag, __ in reversed(self._css_styles):
408 self._removeStyle(tag) 408 self._removeStyle(tag)
409 del self._css_styles 409 del self._css_styles
410 410
411 def xhtml_generic(self, elem, style=True, markup=None): 411 def xhtml_generic(self, elem, style=True, markup=None):
412 """generic method for adding HTML elements 412 """generic method for adding HTML elements