2001-06-06 01:55:51 -04:00
|
|
|
|
PEP: 256
|
|
|
|
|
Title: Docstring Processing System Framework
|
|
|
|
|
Version: $Revision$
|
|
|
|
|
Last-Modified: $Date$
|
2007-06-22 11:32:33 -04:00
|
|
|
|
Author: David Goodger <goodger@python.org>
|
2022-02-27 17:46:36 -05:00
|
|
|
|
Discussions-To: doc-sig@python.org
|
2007-05-18 13:41:31 -04:00
|
|
|
|
Status: Rejected
|
2001-06-06 01:55:51 -04:00
|
|
|
|
Type: Standards Track
|
2002-08-29 23:10:51 -04:00
|
|
|
|
Content-Type: text/x-rst
|
2001-06-06 01:55:51 -04:00
|
|
|
|
Created: 01-Jun-2001
|
2002-08-01 18:32:33 -04:00
|
|
|
|
Post-History: 13-Jun-2001
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
|
|
|
|
|
2007-05-18 13:41:31 -04:00
|
|
|
|
Rejection Notice
|
|
|
|
|
================
|
|
|
|
|
|
|
|
|
|
This proposal seems to have run out of steam.
|
|
|
|
|
|
|
|
|
|
|
2001-06-06 01:55:51 -04:00
|
|
|
|
Abstract
|
2002-08-29 23:10:51 -04:00
|
|
|
|
========
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
Python lends itself to inline documentation. With its built-in
|
|
|
|
|
docstring syntax, a limited form of `Literate Programming`_ 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.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
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.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
The concepts of a DPS framework are presented independently of
|
|
|
|
|
implementation details.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
|
|
|
|
|
2002-11-08 07:15:44 -05:00
|
|
|
|
Road Map to the Docstring PEPs
|
|
|
|
|
==============================
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
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:
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2022-01-21 06:03:51 -05:00
|
|
|
|
* Docstring syntax. :pep:`287`, "reStructuredText Docstring Format",
|
|
|
|
|
proposes a syntax for Python docstrings, PEPs, and
|
2002-08-29 23:10:51 -04:00
|
|
|
|
other uses.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
* Docstring semantics consist of at least two aspects:
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Conventions: the high-level structure of docstrings. Dealt with
|
2022-01-21 06:03:51 -05:00
|
|
|
|
in :pep:`257`, "Docstring Conventions".
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Methodology: rules for the informational content of docstrings.
|
|
|
|
|
Not addressed.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2022-01-21 06:03:51 -05:00
|
|
|
|
* Processing mechanisms. This PEP (:pep:`256`) outlines the high-level
|
2002-08-29 23:10:51 -04:00
|
|
|
|
issues and specification of an abstract docstring processing system
|
2022-01-21 06:03:51 -05:00
|
|
|
|
(DPS). :pep:`258`, "Docutils Design Specification", is an
|
2002-08-29 23:10:51 -04:00
|
|
|
|
overview of the design and implementation of one DPS under
|
|
|
|
|
development.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
* Output styles: developers want the documentation generated from
|
|
|
|
|
their source code to look good, and there are many different ideas
|
2022-01-21 06:03:51 -05:00
|
|
|
|
about what that means. :pep:`258` touches on "Stylist Transforms".
|
2002-08-29 23:10:51 -04:00
|
|
|
|
This aspect of docstring processing has yet to be fully explored.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
By separating out the issues, we can form consensus more easily
|
|
|
|
|
(smaller fights ;-), and accept divergence more readily.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rationale
|
2002-08-29 23:10:51 -04:00
|
|
|
|
=========
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
There are standard inline documentation systems for some other
|
|
|
|
|
languages. For example, Perl has POD_ ("Plain Old Documentation") and
|
|
|
|
|
Java has Javadoc_, 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_ and Web_ (Tangle & Weave), useful for multiple languages.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
There have been many attempts to write auto-documentation systems
|
|
|
|
|
for Python (not an exhaustive list):
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Marc-Andre Lemburg's doc.py_
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Daniel Larsson's pythondoc_ & gendoc_
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Doug Hellmann's HappyDoc_
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2004-06-08 22:02:42 -04:00
|
|
|
|
- Laurence Tratt's Crystal (no longer available on the web)
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Ka-Ping Yee's pydoc_ (pydoc.py is now part of the Python standard
|
|
|
|
|
library; see below)
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Tony Ibbs' docutils_ (Tony has donated this name to the `Docutils
|
|
|
|
|
project`_)
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Edward Loper's STminus_ formalization and related efforts
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
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.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
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.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
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.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
|
|
|
|
|
2002-08-01 18:32:33 -04:00
|
|
|
|
PyDoc & Other Existing Systems
|
2002-08-29 23:10:51 -04:00
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
|
|
- In the case of the GUI/HTML, except for some heuristic hyperlinking
|
|
|
|
|
of identifier names, no formatting of the docstrings is done. They
|
|
|
|
|
are presented within ``<p><small><tt>`` tags to avoid unwanted line
|
|
|
|
|
wrapping. Unfortunately, the result is not attractive.
|
|
|
|
|
|
|
|
|
|
- PyDoc extracts docstrings and structural information (class
|
|
|
|
|
identifiers, method signatures, etc.) from imported module objects.
|
|
|
|
|
There are security issues involved with importing untrusted code.
|
|
|
|
|
Also, information from the source is lost when importing, such as
|
|
|
|
|
comments, "additional docstrings" (string literals in non-docstring
|
2022-01-21 06:03:51 -05:00
|
|
|
|
contexts; see :pep:`258`), and the order of definitions.
|
2002-08-29 23:10:51 -04:00
|
|
|
|
|
|
|
|
|
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.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Specification
|
2002-08-29 23:10:51 -04:00
|
|
|
|
=============
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
The docstring processing system framework is broken up as follows:
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
1. Docstring conventions. Documents issues such as:
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- What should be documented where.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- First line is a one-line synopsis.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2022-01-21 06:03:51 -05:00
|
|
|
|
:pep:`257` documents some of these issues.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
2. Docstring processing system design specification. Documents
|
|
|
|
|
issues such as:
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- High-level spec: what a DPS does.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Command-line interface for executable script.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- System Python API.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Docstring extraction rules.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-11-07 23:26:56 -05:00
|
|
|
|
- Readers, which encapsulate the input context.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Parsers.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Document tree: the intermediate internal data structure. The
|
|
|
|
|
output of the Parser and Reader, and the input to the Writer all
|
|
|
|
|
share the same data structure.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Transforms, which modify the document tree.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Writers for output formats.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
- Distributors, which handle output management (one file, many
|
|
|
|
|
files, or objects in memory).
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
These issues are applicable to any docstring processing system
|
2022-01-21 06:03:51 -05:00
|
|
|
|
implementation. :pep:`258` documents these issues.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
3. Docstring processing system implementation.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2022-01-21 06:03:51 -05:00
|
|
|
|
4. Input markup specifications: docstring syntax. :pep:`287`
|
2002-08-29 23:10:51 -04:00
|
|
|
|
proposes a standard syntax.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
5. Input parser implementations.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
6. Input context readers ("modes": Python source code, PEP, standalone
|
|
|
|
|
text file, email, etc.) and implementations.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
7. Stylists: certain input context readers may have associated
|
|
|
|
|
stylists which allow for a variety of output document styles.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
8. Output formats (HTML, XML, TeX, DocBook, info, etc.) and writer
|
|
|
|
|
implementations.
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
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.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Project Web Site
|
2002-08-29 23:10:51 -04:00
|
|
|
|
================
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
A SourceForge project has been set up for this work at
|
|
|
|
|
http://docutils.sourceforge.net/.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
References and Footnotes
|
2002-08-29 23:10:51 -04:00
|
|
|
|
========================
|
|
|
|
|
|
|
|
|
|
.. _Literate Programming: http://www.literateprogramming.com/
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
.. _POD: http://www.perldoc.com/perl5.6/pod/perlpod.html
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
.. _Javadoc: http://java.sun.com/j2se/javadoc/
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
.. _Autoduck:
|
|
|
|
|
http://www.helpmaster.com/hlp-developmentaids-autoduck.htm
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
.. _Web: http://www-cs-faculty.stanford.edu/~knuth/cweb.html
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
.. _doc.py:
|
2004-06-08 22:02:42 -04:00
|
|
|
|
http://www.egenix.com/files/python/SoftwareDescriptions.html#doc.py
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
.. _pythondoc:
|
|
|
|
|
.. _gendoc: http://starship.python.net/crew/danilo/pythondoc/
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
.. _HappyDoc: http://happydoc.sourceforge.net/
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2008-10-02 08:51:05 -04:00
|
|
|
|
.. _pydoc: http://docs.python.org/library/pydoc.html
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2004-06-08 22:02:42 -04:00
|
|
|
|
.. _docutils: http://www.tibsnjoan.co.uk/docutils.html
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
.. _Docutils project: http://docutils.sourceforge.net/
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
.. _STMinus: http://www.cis.upenn.edu/~edloper/pydoc/
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
.. _Python Doc-SIG: http://www.python.org/sigs/doc-sig/
|
2002-08-01 18:32:33 -04:00
|
|
|
|
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
|
|
|
|
Copyright
|
2002-08-29 23:10:51 -04:00
|
|
|
|
=========
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
This document has been placed in the public domain.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Acknowledgements
|
2002-08-29 23:10:51 -04:00
|
|
|
|
================
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
This document borrows ideas from the archives of the `Python
|
|
|
|
|
Doc-SIG`_. Thanks to all members past & present.
|
2001-06-06 01:55:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-08-29 23:10:51 -04:00
|
|
|
|
..
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
sentence-end-double-space: t
|
|
|
|
|
fill-column: 70
|
|
|
|
|
End:
|