Lines Matching full:documentation
1 :mod:`pydoc` --- Documentation generator and online help system
5 :synopsis: Documentation generator and online help system.
13 single: documentation; generation
14 single: documentation; online
21 The :mod:`pydoc` module automatically generates documentation from Python
22 modules. The documentation can be presented as pages of text on the console,
25 For modules, classes, functions and methods, the displayed documentation is
33 interactive interpreter, which uses :mod:`pydoc` to generate its documentation
34 as text on the console. The same text documentation can also be viewed from
40 at a shell prompt will display documentation on the :mod:`sys` module, in a
46 Unix), and refers to an existing Python source file, then documentation is
51 In order to find objects and their documentation, :mod:`pydoc` imports the
60 Specifying a ``-w`` flag before the argument will cause HTML documentation
67 module is the first line of its documentation string.
70 that will serve documentation to visiting Web browsers. :program:`pydoc -p 1234`
72 the documentation at ``http://localhost:1234/`` in your preferred Web browser.
75 documentation pages.
77 When :program:`pydoc` generates documentation, it uses the current environment