MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / writedocs

Function writedocs

tools/python-3.11.9-amd64/Lib/pydoc.py:1888–1893  ·  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

1886 print('wrote', name + '.html')
1887
1888def writedocs(dir, pkgpath='', done=None):
1889 """Write out HTML documentation for all modules in a directory tree."""
1890 if done is None: done = {}
1891 for importer, modname, ispkg in pkgutil.walk_packages([dir], pkgpath):
1892 writedoc(modname)
1893 return
1894
1895class Helper:
1896

Callers 1

cliFunction · 0.85

Calls 1

writedocFunction · 0.85

Tested by

no test coverage detected