1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
[epytext]
instring='''"""Return line-wrapped description text.
We only wrap simple descriptions. We leave doctests, multi-paragraph text,
and bulleted lists alone. See http://www.docformatter.com/.
@param text: the text argument.
@param indentation: the super long description for the indentation argument that will require docformatter to wrap this line.
@param wrap_length: the wrap_length argument
@param force_wrap: the force_warp argument.
@return: really long description text wrapped at n characters and a very long description of the return value so we can wrap this line abcd efgh ijkl mnop qrst uvwx yz.
"""'''
outstring='''"""Return line-wrapped description text.
We only wrap simple descriptions. We leave doctests, multi-paragraph text, and
bulleted lists alone. See
http://www.docformatter.com/.
@param text: the text argument.
@param indentation: the super long description for the indentation argument that
will require docformatter to wrap this line.
@param wrap_length: the wrap_length argument
@param force_wrap: the force_warp argument.
@return: really long description text wrapped at n characters and a very long
description of the return value so we can wrap this line abcd efgh ijkl mnop
qrst uvwx yz.
"""'''
[epytext.numpy]
instring='''"""Return line-wrapped description text.
We only wrap simple descriptions. We leave doctests, multi-paragraph text,
and bulleted lists alone. See http://www.docformatter.com/.
@param text: the text argument.
@param indentation: the super long description for the indentation argument that will require docformatter to wrap this line.
@param wrap_length: the wrap_length argument
@param force_wrap: the force_warp argument.
@return: really long description text wrapped at n characters and a very long description of the return value so we can wrap this line abcd efgh ijkl mnop qrst uvwx yz.
"""'''
outstring='''"""Return line-wrapped description text.
We only wrap simple descriptions. We leave doctests, multi-paragraph text, and
bulleted lists alone. See
http://www.docformatter.com/.
@param text: the text argument.
@param indentation: the super long description for the indentation argument that will require docformatter to wrap this line.
@param wrap_length: the wrap_length argument
@param force_wrap: the force_warp argument.
@return: really long description text wrapped at n characters and a very long description of the return value so we can wrap this line abcd efgh ijkl mnop qrst uvwx yz.
"""'''
|