MCPcopy Index your code
hub / github.com/python/cpython / handleSlideshow

Function handleSlideshow

Doc/includes/minidom-example.py:28–34  ·  view source on GitHub ↗
(slideshow)

Source from the content-addressed store, hash-verified

26 return ''.join(rc)
27
28def handleSlideshow(slideshow):
29 print("<html>")
30 handleSlideshowTitle(slideshow.getElementsByTagName("title")[0])
31 slides = slideshow.getElementsByTagName("slide")
32 handleToc(slides)
33 handleSlides(slides)
34 print("</html>")
35
36def handleSlides(slides):
37 for slide in slides:

Callers 1

minidom-example.pyFile · 0.85

Calls 4

handleSlideshowTitleFunction · 0.85
handleTocFunction · 0.85
handleSlidesFunction · 0.85
getElementsByTagNameMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…