SOLVED: Docstring parsing and formatting

2012-09-18 Thread Ben Finney
Joel Goldstick writes: > On Tue, Sep 18, 2012 at 1:03 AM, Terry Reedy wrote: > > On 9/17/2012 10:03 PM, Ben Finney wrote: > >> Where can I find a standard implementation of the docstring parsing > >> and splitting algorithm from PEP 257? > > Do you know about pydoc? I haven't looked at its sourc

Re: Docstring parsing and formatting

2012-09-18 Thread Joel Goldstick
On Tue, Sep 18, 2012 at 1:03 AM, Terry Reedy wrote: > On 9/17/2012 10:03 PM, Ben Finney wrote: >> >> Howdy all, >> >> Where can I find a standard implementation of the docstring parsing and >> splitting algorithm from PEP 257? Do you know about pydoc? I haven't looked at its source, but since i

Re: Docstring parsing and formatting

2012-09-17 Thread Terry Reedy
On 9/17/2012 10:03 PM, Ben Finney wrote: Howdy all, Where can I find a standard implementation of the docstring parsing and splitting algorithm from PEP 257? I presume there is something in the code behind help(). -- Terry Jan Reedy -- http://mail.python.org/mailman/listinfo/python-list

Docstring parsing and formatting

2012-09-17 Thread Ben Finney
Howdy all, Where can I find a standard implementation of the docstring parsing and splitting algorithm from PEP 257? PEP 257 describes a convention of structure and formatting for docstrings http://www.python.org/dev/peps/pep-0257/>. Docstrings that conform to this convention can therefore be pa