Skip to content

Commit 73812d6

Browse files
committed
Drop the mysterious _flags from treebuilder Nodes
1 parent 7a827bf commit 73812d6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

html5lib/treebuilders/_base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,11 @@ def __init__(self, name):
2828
value - The value of the current node (applies to text nodes and
2929
comments
3030
attributes - a dict holding name, value pairs for attributes of the node
31-
_flags - A list of miscellaneous flags that can be set on the node
3231
"""
3332
self.name = name
3433
self.parent = None
3534
self.value = None
3635
self.attributes = {}
37-
self._flags = []
3836

3937
def __str__(self):
4038
attributesStr = " ".join(["%s=\"%s\"" % (name, value)

0 commit comments

Comments
 (0)