MCPcopy Index your code
hub / github.com/clips/pattern / append

Method append

pattern/web/soup/BeautifulSoup.py:263–265  ·  view source on GitHub ↗

Appends the given tag to the contents of this tag.

(self, tag)

Source from the content-addressed store, hash-verified

261 self.contents.insert(position, newChild)
262
263 def append(self, tag):
264 """Appends the given tag to the contents of this tag."""
265 self.insert(len(self.contents), tag)
266
267 def findNext(self, name=None, attrs={}, text=None, **kwargs):
268 """Returns the first item that matches the given criteria and

Callers 15

__unicode__Method · 0.45
updateMethod · 0.45
find_urlsFunction · 0.45
find_emailFunction · 0.45
handle_starttagMethod · 0.45
handle_endtagMethod · 0.45
handle_dataMethod · 0.45
handle_commentMethod · 0.45
collapse_spacesFunction · 0.45
collapse_tabsFunction · 0.45
searchMethod · 0.45
searchMethod · 0.45

Calls 2

insertMethod · 0.95
lenFunction · 0.85

Tested by 2

setUpMethod · 0.36
testAppendMethod · 0.36