MCPcopy Create free account
hub / github.com/kurtmckee/feedparser / handle_data

Method handle_data

feedparser/html.py:250–259  ·  view source on GitHub ↗

:type text: str :rtype: None

(self, text)

Source from the content-addressed store, hash-verified

248 self.pieces.append('&%s' % ref)
249
250 def handle_data(self, text):
251 """
252 :type text: str
253 :rtype: None
254 """
255
256 # called for each block of plain text, i.e. outside of any tag and
257 # not containing any character or entity references
258 # Store the original text verbatim.
259 self.pieces.append(text)
260
261 def handle_comment(self, text):
262 """

Callers 2

_scan_nameMethod · 0.95
parse_declarationMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected