TRHEAD->__TRHEAD__ as Jonathan suggested

This commit is contained in:
mdipierro
2013-07-11 13:01:47 -05:00
parent 8c19075f82
commit 9643086b34
2 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.6.0-development+timestamp.2013.07.11.11.48.58
Version 2.6.0-development+timestamp.2013.07.11.13.00.56
+3 -4
View File
@@ -98,7 +98,6 @@ __all__ = [
'TFOOT',
'TITLE',
'TR',
# 'TRHEAD',
'TT',
'URL',
'XHTML',
@@ -1641,9 +1640,9 @@ class TR(DIV):
self._wrap_components((TD, TH), TD)
class TRHEAD(DIV):
class __TRHEAD__(DIV):
"""
TRHEAD Component.
__TRHEAD__ Component, internal only
If subcomponents are not TD/TH-components they will be wrapped in a TH
@@ -1661,7 +1660,7 @@ class THEAD(DIV):
tag = 'thead'
def _fixup(self):
self._wrap_components((TRHEAD, TR), TRHEAD)
self._wrap_components((__TRHEAD__, TR), __TRHEAD__)
class TBODY(DIV):