summaryrefslogtreecommitdiff
path: root/src/beautifulsoup/builder/__init__.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2011-01-03 21:36:13 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2011-01-03 21:36:13 -0500
commit692fe5201d5dec15a3598578a6f403e67802de0d (patch)
tree7ab5c761163b5fae77304ff8b6769afd8a9d84e1 /src/beautifulsoup/builder/__init__.py
parentea57d5122f1df133927e266e5fabbf0ef767f460 (diff)
Brought in a treebuilder from html5lib and got it to work.
Diffstat (limited to 'src/beautifulsoup/builder/__init__.py')
-rw-r--r--src/beautifulsoup/builder/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/beautifulsoup/builder/__init__.py b/src/beautifulsoup/builder/__init__.py
index 2d33a0b..fe80953 100644
--- a/src/beautifulsoup/builder/__init__.py
+++ b/src/beautifulsoup/builder/__init__.py
@@ -16,8 +16,6 @@ class TreeBuilder(Entities):
def __init__(self):
self.soup = None
- self.self_closing_tags = set()
- self.preserve_whitespace_tags = set()
def isSelfClosingTag(self, name):
return name in self.self_closing_tags