]> code.delx.au - gnu-emacs-elpa/blob - packages/compact-docstrings/etc/before.py
Add 'packages/compact-docstrings/' from commit '7ada669605c4e2a9a00fa6d03da7176f2c6e3297'
[gnu-emacs-elpa] / packages / compact-docstrings / etc / before.py
1 # With regular docstrings
2 def complex(real=0.0, imag=0.0):
3 """Form a complex number.
4
5 Keyword arguments:
6 real -- the real part (default 0.0)
7 imag -- the imaginary part (default 0.0)
8
9 Some more description text, artificially
10 lengthened to make it span two lines.
11
12 Another paragraph.
13 """
14 pass