X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/3ad3bf290c5527930de97589a89e2891ac023895..4bb39f7378b13ff4c536b863f32f324c31ed5b75:/packages/compact-docstrings/etc/after.py diff --git a/packages/compact-docstrings/etc/after.py b/packages/compact-docstrings/etc/after.py new file mode 100644 index 000000000..26a7ae2d6 --- /dev/null +++ b/packages/compact-docstrings/etc/after.py @@ -0,0 +1,14 @@ +# With compact docstrings +def complex(real=0.0, imag=0.0): + """Form a complex number. + + Keyword arguments: + real -- the real part (default 0.0) + imag -- the imaginary part (default 0.0) + + Some more description text, artificially + lengthened to make it span two lines. + + Another paragraph. + """ + pass