X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/3ad3bf290c5527930de97589a89e2891ac023895..4bb39f7378b13ff4c536b863f32f324c31ed5b75:/packages/compact-docstrings/etc/before.py diff --git a/packages/compact-docstrings/etc/before.py b/packages/compact-docstrings/etc/before.py new file mode 100644 index 000000000..66bebaa5d --- /dev/null +++ b/packages/compact-docstrings/etc/before.py @@ -0,0 +1,14 @@ +# With regular 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