MCPcopy Index your code
hub / github.com/RustPython/RustPython / writedocs

Function writedocs

Lib/pydoc.py:1818–1823  ·  view source on GitHub ↗

Write out HTML documentation for all modules in a directory tree.

(dir, pkgpath='', done=None)

Source from the content-addressed store, hash-verified

1816 print('wrote', name + '.html')
1817
1818def writedocs(dir, pkgpath='', done=None):
1819 """Write out HTML documentation for all modules in a directory tree."""
1820 if done is None: done = {}
1821 for importer, modname, ispkg in pkgutil.walk_packages([dir], pkgpath):
1822 writedoc(modname)
1823 return
1824
1825
1826def _introdoc():

Callers 1

cliFunction · 0.85

Calls 1

writedocFunction · 0.85

Tested by

no test coverage detected