MCPcopy Create free account
hub / github.com/clips/pattern / __init__

Method __init__

pattern/web/soup/BeautifulSoup.py:1518–1522  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

1516 BeautifulStoneSoup before writing your own subclass."""
1517
1518 def __init__(self, *args, **kwargs):
1519 if not kwargs.has_key('smartQuotesTo'):
1520 kwargs['smartQuotesTo'] = self.HTML_ENTITIES
1521 kwargs['isHTML'] = True
1522 BeautifulStoneSoup.__init__(self, *args, **kwargs)
1523
1524 SELF_CLOSING_TAGS = buildTagMap(None,
1525 ('br' , 'hr', 'input', 'img', 'meta',

Callers

nothing calls this directly

Calls 2

has_keyMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected