diff options
Diffstat (limited to 'BeautifulSoup.py')
-rw-r--r-- | BeautifulSoup.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/BeautifulSoup.py b/BeautifulSoup.py index 7ba4fa7..32d4a15 100644 --- a/BeautifulSoup.py +++ b/BeautifulSoup.py @@ -1144,15 +1144,12 @@ class XMLParserBuilder(HTMLParser, TreeBuilder): # The tag was filtered out by the SoupStrainer return if name in self.quote_tags: - #print "Beginning quote (%s)" % name + #print "Beginning quote (%s)" % name self.quoteStack.append(name) self.literal = 1 if self.isSelfClosingTag(name): self.soup.popTag() - def handle_startendtag(self, name, attrs): - self.handle_starttag(name, attrs) - def handle_endtag(self, name): if self.quoteStack and self.quoteStack[-1] != name: #This is not a real end tag. |