[Python Home] [PEP Index] [PEP Source] |
PEP: | 256 |
---|---|
Title: | Docstring Processing System Framework |
Version: | 1826 |
Last-Modified: | 2004-06-08 19:02:42 -0700 (Tue, 08 Jun 2004) |
Author: | David Goodger <goodger at users.sourceforge.net> |
Discussions-To: | <doc-sig at python.org> |
Status: | Draft |
Type: | Standards Track |
Content-Type: | text/x-rst |
Created: | 01-Jun-2001 |
Post-History: | 13-Jun-2001 |
Python lends itself to inline documentation. With its built-in docstring syntax, a limited form of Literate Programming [4] is easy to do in Python. However, there are no satisfactory standard tools for extracting and processing Python docstrings. The lack of a standard toolset is a significant gap in Python's infrastructure; this PEP aims to fill the gap.
The issues surrounding docstring processing have been contentious and difficult to resolve. This PEP proposes a generic Docstring Processing System (DPS) framework, which separates out the components (program and conceptual), enabling the resolution of individual issues either through consensus (one solution) or through divergence (many). It promotes standard interfaces which will allow a variety of plug-in components (input context readers, markup parsers, and output format writers) to be used.
The concepts of a DPS framework are presented independently of implementation details.
There are many aspects to docstring processing. The "Docstring PEPs" have broken up the issues in order to deal with each of them in isolation, or as close as possible. The individual aspects and associated PEPs are as follows:
By separating out the issues, we can form consensus more easily (smaller fights ;-), and accept divergence more readily.
There are standard inline documentation systems for some other languages. For example, Perl has POD [5] ("Plain Old Documentation") and Java has Javadoc [6], but neither of these mesh with the Pythonic way. POD syntax is very explicit, but takes after Perl in terms of readability. Javadoc is HTML-centric; except for "@field" tags, raw HTML is used for markup. There are also general tools such as Autoduck [7] and Web [8] (Tangle & Weave), useful for multiple languages.
There have been many attempts to write auto-documentation systems for Python (not an exhaustive list):
These systems, each with different goals, have had varying degrees of success. A problem with many of the above systems was over-ambition combined with inflexibility. They provided a self-contained set of components: a docstring extraction system, a markup parser, an internal processing system and one or more output format writers with a fixed style. Inevitably, one or more aspects of each system had serious shortcomings, and they were not easily extended or modified, preventing them from being adopted as standard tools.
It has become clear (to this author, at least) that the "all or nothing" approach cannot succeed, since no monolithic self-contained system could possibly be agreed upon by all interested parties. A modular component approach designed for extension, where components may be multiply implemented, may be the only chance for success. Standard inter-component APIs will make the DPS components comprehensible without requiring detailed knowledge of the whole, lowering the barrier for contributions, and ultimately resulting in a rich and varied system.
Each of the components of a docstring processing system should be developed independently. A "best of breed" system should be chosen, either merged from existing systems, and/or developed anew. This system should be included in Python's standard library.
PyDoc became part of the Python standard library as of release 2.1. It extracts and displays docstrings from within the Python interactive interpreter, from the shell command line, and from a GUI window into a web browser (HTML). Although a very useful tool, PyDoc has several deficiencies, including:
The functionality proposed in this PEP could be added to or used by PyDoc when serving HTML pages. The proposed docstring processing system's functionality is much more than PyDoc needs in its current form. Either an independent tool will be developed (which PyDoc may or may not use), or PyDoc could be expanded to encompass this functionality and become the docstring processing system (or one such system). That decision is beyond the scope of this PEP.
Similarly for other existing docstring processing systems, their authors may or may not choose compatibility with this framework. However, if this framework is accepted and adopted as the Python standard, compatibility will become an important consideration in these systems' future.
The docstring processing system framework is broken up as follows:
Docstring conventions. Documents issues such as:
Docstring processing system design specification. Documents issues such as:
These issues are applicable to any docstring processing system implementation. PEP 258 [3] documents these issues.
Docstring processing system implementation.
Input markup specifications: docstring syntax. PEP 287 [1] proposes a standard syntax.
Input parser implementations.
Input context readers ("modes": Python source code, PEP, standalone text file, email, etc.) and implementations.
Stylists: certain input context readers may have associated stylists which allow for a variety of output document styles.
Output formats (HTML, XML, TeX, DocBook, info, etc.) and writer implementations.
Components 1, 2/3/5, and 4 are the subject of individual companion PEPs. If there is another implementation of the framework or syntax/parser, additional PEPs may be required. Multiple implementations of each of components 6 and 7 will be required; the PEP mechanism may be overkill for these components.
A SourceForge project has been set up for this work at http://docutils.sourceforge.net/.
[1] | (1, 2) PEP 287, reStructuredText Docstring Format, Goodger (http://www.python.org/peps/pep-0287.html) |
[2] | (1, 2) PEP 257, Docstring Conventions, Goodger, Van Rossum (http://www.python.org/peps/pep-0257.html) |
[3] | (1, 2, 3) PEP 258, Docutils Design Specification, Goodger (http://www.python.org/peps/pep-0258.html) |
[4] | http://www.literateprogramming.com/ |
[5] | http://www.perldoc.com/perl5.6/pod/perlpod.html |
[6] | http://java.sun.com/j2se/javadoc/ |
[7] | http://www.helpmaster.com/hlp-developmentaids-autoduck.htm |
[8] | http://www-cs-faculty.stanford.edu/~knuth/cweb.html |
[9] | http://www.egenix.com/files/python/SoftwareDescriptions.html#doc.py |
[10] | (1, 2) http://starship.python.net/crew/danilo/pythondoc/ |
[11] | http://happydoc.sourceforge.net/ |
[12] | http://www.python.org/doc/current/lib/module-pydoc.html |
[13] | http://www.tibsnjoan.co.uk/docutils.html |
[14] | http://docutils.sourceforge.net/ |
[15] | http://www.cis.upenn.edu/~edloper/pydoc/ |
[16] | http://www.python.org/sigs/doc-sig/ |
This document has been placed in the public domain.
This document borrows ideas from the archives of the Python Doc-SIG [16]. Thanks to all members past & present.