MCPcopy
hub / github.com/pyload/pyload / __init__

Method __init__

module/lib/feedparser.py:1714–1720  ·  view source on GitHub ↗
(self, baseuri, baselang, encoding)

Source from the content-addressed store, hash-verified

1712if _XML_AVAILABLE:
1713 class _StrictFeedParser(_FeedParserMixin, xml.sax.handler.ContentHandler):
1714 def __init__(self, baseuri, baselang, encoding):
1715 if _debug: sys.stderr.write('trying StrictFeedParser\n')
1716 xml.sax.handler.ContentHandler.__init__(self)
1717 _FeedParserMixin.__init__(self, baseuri, baselang, encoding)
1718 self.bozo = 0
1719 self.exc = None
1720 self.decls = {}
1721
1722 def startPrefixMapping(self, prefix, uri):
1723 self.trackNamespace(prefix, uri)

Callers

nothing calls this directly

Calls 2

writeMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected