From: Fredrik Tolf Date: Tue, 27 Dec 2011 22:11:01 +0000 (+0100) Subject: Fixed up documentation a bit. X-Git-Tag: 0.2~9 X-Git-Url: http://dolda2000.com/gitweb/?p=pdm.git;a=commitdiff_plain;h=f3bcebd5bab4807a59abf7e08b2af402cb17393a Fixed up documentation a bit. --- diff --git a/pdm/__init__.py b/pdm/__init__.py index b3cce04..537a31e 100644 --- a/pdm/__init__.py +++ b/pdm/__init__.py @@ -9,7 +9,7 @@ This package contains the following modules: - srv -- Server module - cli -- Client module - - perf -- Library for implementing object for the PERF protocol + - perf -- Library for implementing objects for the PERF protocol The protocol allows multiple management subprotocols for different modes of operation. Currently, the following two management protocols @@ -19,13 +19,13 @@ are supported. accepts arbitrary Python code, executes it in the daemon process, and returns its replies, all in text form. The protocol is simple, generic, and has few failure modes, but is hardly suitable for - programmatic interaction. See the documentation for pdm.srv.repl - and pdm.cli.replclient for further details. + programmatic interaction. See the documentation for L{pdm.srv.repl} + and L{pdm.cli.replclient} for further details. - The PERF protocol is intended for programmatic interaction with the daemon process. Various Python modules may expose objects that implement one or several of a few pre-defined interfaces that allow for various forms of inspection and management of the program - state. See the documentation for pdm.srv.perf and - pdm.cli.perfclient for further details. + state. See the documentation for L{pdm.srv.perf} and + L{pdm.cli.perfclient} for further details. """