diff -r 78104ca7c163 -r 26fd684df3ee python.rst --- a/python.rst Tue Jan 03 13:26:20 2012 +0200 +++ b/python.rst Wed Jan 04 00:22:34 2012 +0200 @@ -14,7 +14,7 @@ ====================================== :: - $ python -m compileall dir + $ python -m compileall $dir Install python modules/packages. ================================ @@ -33,6 +33,23 @@ http://peak.telecommunity.com/DevCenter/EasyInstall#uninstalling-packages Uninstalling Packages +Generate documentation from Python sources. +=========================================== + +Generate documentation from Python sources by pydoc. +---------------------------------------------------- +:: + + $ mkdir html + $ cd html + $ pydoc -w ../ + +Generate documentation from Python sources by epydoc. +----------------------------------------------------- + +Generate documentation from Python sources by Sphinx. +----------------------------------------------------- + Code analyzers and style checkers. ==================================